diff options
Diffstat (limited to 'challenge/c07.go')
-rw-r--r-- | challenge/c07.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge/c07.go b/challenge/c07.go index 5ceee26..bce898a 100644 --- a/challenge/c07.go +++ b/challenge/c07.go @@ -79,7 +79,7 @@ func C7() { c := lib.Base64ToBytes(cipher07) k := lib.StrToBytes(key07) - o := lib.AESDecrypt(c, k) + o := lib.AESDecryptECB(c, k) fmt.Printf("%v", lib.BytesToStr(o)) } |