diff options
Diffstat (limited to 'challenge/c12.go')
-rw-r--r-- | challenge/c12.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/challenge/c12.go b/challenge/c12.go index 0308bd4..2c4103f 100644 --- a/challenge/c12.go +++ b/challenge/c12.go @@ -22,7 +22,6 @@ YnkK` encrypt := func(in []byte) []byte { return lib.AESEncryptECB(append(in, lib.Base64ToBytes(unknown)...), key) } - freshSheepBytes := func(n int) []byte { in := make([]byte, n) for i := 0; i < n; i++ { @@ -96,7 +95,6 @@ YnkK` } panic("not found!") } - if !isOracleUsingECB() { panic("oracle not using ecb mode") } |