summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2020-12-05 23:25:58 -0500
committerrsiddharth <s@ricketyspace.net>2020-12-05 23:25:58 -0500
commit08fd8ad89102fc6b0a1b558c96bc8b845142dac1 (patch)
tree2358493f67b22b6279e236d96e013ee501d26d7d
parent4bc5abe6df2289008d622c4bdf2498d77bb80a35 (diff)
lib/aes: AESDecrypt -> AESDecryptECB
-rw-r--r--challenge/c07.go2
-rw-r--r--lib/aes.go2
2 files changed, 2 insertions, 2 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))
}
diff --git a/lib/aes.go b/lib/aes.go
index 47c3291..9440b52 100644
--- a/lib/aes.go
+++ b/lib/aes.go
@@ -19,7 +19,7 @@ func AESDecryptCBC(cipher, key, iv []byte) []byte {
return output
}
-func AESDecrypt(cipher, key []byte) []byte {
+func AESDecryptECB(cipher, key []byte) []byte {
iter := len(cipher) / 16
// Decrypt 16 bytes at a time.