From 0afdf0f2d20aa22baacfc8c75d0004a0dd3d09d4 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Wed, 9 Dec 2020 20:08:02 -0500 Subject: lib/aes: update AESEncrryptECB Change argument name `cipher` to `plain`. --- lib/aes.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/aes.go') diff --git a/lib/aes.go b/lib/aes.go index 44f2350..b00e0b8 100644 --- a/lib/aes.go +++ b/lib/aes.go @@ -36,15 +36,15 @@ func AESDecryptCBC(cipher, key, iv []byte) []byte { return output } -func AESEncryptECB(cipher, key []byte) []byte { - iter := len(cipher) / 16 +func AESEncryptECB(plain, key []byte) []byte { + iter := len(plain) / 16 // Encrypt 16 bytes at a time. output := make([]byte, 0) for i := 0; i < iter; i++ { s := (i * 16) e := (i * 16) + 16 - output = append(output, aesCipher(cipher[s:e], key)...) + output = append(output, aesCipher(plain[s:e], key)...) } return output -- cgit v1.2.3