Finish challenge 28 by implementing sha-1

This commit is contained in:
2022-08-17 17:10:34 -04:00
parent 54047b3450
commit 65fe5a7f96
3 changed files with 287 additions and 4 deletions

View File

@@ -10,10 +10,11 @@ mod set1;
mod set2;
mod set3;
mod set4;
mod sha1;
mod utils;
fn main() {
const RUN_ALL: bool = false;
const RUN_ALL: bool = true;
if RUN_ALL {
set1::challenge1();
set1::challenge2();
@@ -43,7 +44,8 @@ fn main() {
set4::challenge26();
set4::challenge27();
set4::challenge28();
set4::challenge29();
} else {
set4::challenge28();
set4::challenge29();
}
}