Implement encryption oracle for challenge 11.

This commit is contained in:
2022-04-22 18:56:39 -04:00
parent 9f3eb1356c
commit b757f359ff
5 changed files with 74 additions and 14 deletions

View File

@@ -1,6 +1,7 @@
mod bytes;
mod bytes_base64;
mod cbs;
mod ecb;
mod set1;
mod set2;
@@ -13,7 +14,7 @@ fn main() {
// set1::challenge6();
// set1::challenge7();
// set1::challenge8();
// set2::challenge9();
set2::challenge9();
set2::challenge10();
set2::challenge11();
}