diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/aes.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ package lib -// Returns a key schedule (44 bytes, 11 4-byte words) given a key 'k' +// Returns a key schedule (176 bytes, 44 4-byte words) given a key 'k' // (16 bytes, 4 4-byte words). func KeyExpansion(k []byte) [][]byte { ks := make([][]byte, 44) // key schedule |