linear_cryptanalysis

simple linear cryptanalysis attack on an spn
git clone git://git.superpozycja.net/linear_cryptanalysis
Log | Files | Refs | README

commit 8b5a1e41f117c541ccec4d2eea6d8872ad8bee1e
parent 66902b6e60311feb2d1855ad86ed5c195d952083
Author: superpozycja <anna@superpozycja.net>
Date:   Thu, 12 Sep 2024 22:26:53 +0200

revert test something

Diffstat:
Msrc/main.rs | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/src/main.rs b/src/main.rs @@ -4,7 +4,5 @@ fn main() { let pt = [0b0010_0110, 0b1011_0111]; let key = [0b0011_1010, 0b1001_0100, 0b1101_0110, 0b0011_1111]; let ct = la::encrypt(&pt, &key); - - println!("ciphertext:"); la::print_block(&ct); }