diff options
author | rsiddharth <s@ricketyspace.net> | 2020-11-17 21:17:08 -0500 |
---|---|---|
committer | rsiddharth <s@ricketyspace.net> | 2020-11-17 21:17:08 -0500 |
commit | 0116d2c5a5e15d7a9e35eadb7ecc7f3fad55201b (patch) | |
tree | f8d93d6d3e4bc471a21f9691fb1b2e3eafd389b2 /lib/aes.go | |
parent | adc02291fa658ed47658312ddce8acbaffd2af79 (diff) |
lib: update MkState docstring
Diffstat (limited to 'lib/aes.go')
-rw-r--r-- | lib/aes.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ package lib -// Make and return initial state array from 16-byte input 'in' +// Makes and returns initial the state array from 16-byte input 'in'. func MkState(in []byte) [][]byte { if len(in) != 16 { return [][]byte{} |