commit a39d0779d7a5be3f1a44ef4a6ac0b9705e995aad
Author: superpozycja <anna@superpozycja.net>
Date: Thu, 12 Sep 2024 11:59:02 +0200
initial commit
Diffstat:
3 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
@@ -0,0 +1,6 @@
+[package]
+name = "linear_cryptanalysis"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
diff --git a/README b/README
@@ -0,0 +1,7 @@
+ linear cryptanalysis
+
+an implementation of a simple linear cryptanalysis attack on a substitution-
+permutation network. the exact network is as described in [1].
+
+[1] - Douglas Stinson. 2002. Cryptography: Theory and Practice, Second Edition
+ (2nd. ed.). CRC/C&H.
diff --git a/src/main.rs b/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}