From d6c2957137c7292845c095cb798826fabd19e527 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Mon, 16 Nov 2020 17:53:50 -0500 Subject: lib/aes.go: fix KeyExpansion docstring --- lib/aes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/aes.go b/lib/aes.go index ecc7479..ea4a449 100644 --- a/lib/aes.go +++ b/lib/aes.go @@ -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 -- cgit v1.2.3