From f7dacb6eb820b553e1d565e177f77ab176f18897 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Sat, 12 Dec 2020 00:30:04 -0500 Subject: lib/blocks: rename CipherIsECB -> CipherUsesECB --- challenge/c11.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'challenge/c11.go') diff --git a/challenge/c11.go b/challenge/c11.go index 5836758..e91d60b 100644 --- a/challenge/c11.go +++ b/challenge/c11.go @@ -14,7 +14,7 @@ func C11() { for i := 0; i < 10; i++ { o := lib.OracleAESRandomEncrypt(p) - if lib.CipherIsECB(o) != nil { + if lib.CipherUsesECB(o) != nil { fmt.Printf("%d -> Enciphered with ECB: %v (%d)\n", i, o, len(o)) } else { fmt.Printf("%d -> Enciphered with CBC: %v (%d)\n", i, o, len(o)) -- cgit v1.2.3