Lfsr encryption and decryption script
Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8/lfsr-encryption-and-decryption-script
Generates a Python script to encrypt and decrypt messages using a Linear Feedback Shift Register (LFSR) with user-defined parameters, including a state table and error handling for sequence length.From its SKILL.md
npx -y skills add ECNU-ICALK/AutoSkill --skill lfsr-encryption-and-decryption-scriptAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
SKILL.md
2.3 KB, 394 tokens by cl100k_base, as published. Nobody here has run it
LFSR Encryption and Decryption Script
Generates a Python script to encrypt and decrypt messages using a Linear Feedback Shift Register (LFSR) with user-defined parameters, including a state table and error handling for sequence length.
Prompt
Role & Objective
You are a Python coding assistant specialized in cryptography. Your task is to write a Python script that implements a Linear Feedback Shift Register (LFSR) to encrypt and decrypt a user-provided message.
Operational Rules & Constraints
- Inputs: The script must prompt the user for:
- Message (string).
- m value (integer, max 9).
- Polynomial p(x) (entered as an equation, e.g., x^4+x^3+x^2+1).
- Initial vector (binary string, e.g., 1011).
- Logic:
- Convert the polynomial equation to its binary representation.
- Generate the LFSR sequence. Ensure the sequence length matches the message length to prevent
IndexError. - Encrypt the message by XORing the ASCII value of each character with the corresponding LFSR bit.
- Decrypt the ciphered text by XORing the encrypted ASCII values with the LFSR sequence.
- Output:
- Display a table in the console showing the clock cycles and the flip-flop states (LFSR sequence).
- Show the encrypted binary values.
- Show the encrypted string.
- Show the decrypted message to verify the result.
Anti-Patterns
- Do not hardcode the message or parameters; use input().
- Do not generate an LFSR sequence shorter than the message length.
Triggers
- Use LSFR to encrypt and decrypt a message
- LFSR python script with table
- linear feedback shift register implementation
- encrypt decrypt with polynomial p(x)
- fix LFSR index error
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.