diff options
Diffstat (limited to 'lib/aes.go')
-rw-r--r-- | lib/aes.go | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -19,6 +19,20 @@ func AESDecryptCBC(cipher, key, iv []byte) []byte { return output } +func AESEncryptECB(cipher, key []byte) []byte { + iter := len(cipher) / 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)...) + } + + return output +} + func AESDecryptECB(cipher, key []byte) []byte { iter := len(cipher) / 16 |