Clean up sha-1 and start with md4 implementation

This commit is contained in:
2022-08-20 13:33:29 -04:00
parent c12b1c45a6
commit 106b8febaf
4 changed files with 187 additions and 45 deletions

View File

@@ -3,6 +3,7 @@ mod bytes_base64;
mod cbc;
mod ctr;
mod ecb;
mod md4;
mod mt19937;
mod mtcipher;
mod parser;
@@ -47,6 +48,8 @@ fn main() {
set4::challenge29();
set4::challenge30();
} else {
set4::challenge28();
set4::challenge29();
set4::challenge30();
}
}