Implement Hill Cipher with 2x2 Key Matrix in Ciphers Module #876
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This pull request introduces the Hill cipher algorithm to the
ciphers
module, specifically implementing it with a 2x2 key matrix. The Hill cipher is a polygraphic substitution cipher based on linear algebra, operating on blocks of letters and using matrix multiplication to encrypt and decrypt messages.Implementation Details:
Key Matrix: The cipher utilizes a 2x2 key matrix for the encryption and decryption processes. It's essential that the determinant of this matrix is coprime with 26 to ensure the matrix is invertible in modular arithmetic.
Functionality: The implementation includes functions for both encryption and decryption, handling input text by dividing it into appropriate block sizes and applying the cipher accordingly.
Testing: Comprehensive tests have been added to validate the correctness of the algorithm, ensuring accurate encryption and decryption operations.
Future Enhancements:
While this implementation focuses on a 2x2 key matrix, future updates could extend support to larger key matrices, such as 3x3, to accommodate more complex encryption schemes.
Type of change
Checklist:
cargo clippy --all -- -D warnings
just before my last commit and fixed any issues that were found.cargo fmt
just before my last commit.cargo test
just before my last commit and all tests passed.mod.rs
file within its own folder, and in any parent folder(s).DIRECTORY.md
with the correct link.CONTRIBUTING.md
and my code follows its guidelines.