summaryrefslogtreecommitdiffstats
path: root/lib/aes.go
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2020-11-17 21:17:08 -0500
committerrsiddharth <s@ricketyspace.net>2020-11-17 21:17:08 -0500
commit0116d2c5a5e15d7a9e35eadb7ecc7f3fad55201b (patch)
treef8d93d6d3e4bc471a21f9691fb1b2e3eafd389b2 /lib/aes.go
parentadc02291fa658ed47658312ddce8acbaffd2af79 (diff)
lib: update MkState docstring
Diffstat (limited to 'lib/aes.go')
-rw-r--r--lib/aes.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/aes.go b/lib/aes.go
index cfc06ff..a4c8ec2 100644
--- a/lib/aes.go
+++ b/lib/aes.go
@@ -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{}