summaryrefslogtreecommitdiff
path: root/libgo/go/crypto/aes/block.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/crypto/aes/block.go')
-rw-r--r--libgo/go/crypto/aes/block.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/crypto/aes/block.go b/libgo/go/crypto/aes/block.go
index 57a7e9e25f..41ea9cf95e 100644
--- a/libgo/go/crypto/aes/block.go
+++ b/libgo/go/crypto/aes/block.go
@@ -137,7 +137,7 @@ func subw(w uint32) uint32 {
// Rotate
func rotw(w uint32) uint32 { return w<<8 | w>>24 }
-// Key expansion algorithm. See FIPS-197, Figure 11.
+// Key expansion algorithm. See FIPS-197, Figure 11.
// Their rcon[i] is our powx[i-1] << 24.
func expandKeyGo(key []byte, enc, dec []uint32) {
// Encryption key setup.