aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/crypto/cipher/cfb.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/cipher/cfb.go b/src/crypto/cipher/cfb.go
index b493e05fe2..7de682fac3 100644
--- a/src/crypto/cipher/cfb.go
+++ b/src/crypto/cipher/cfb.go
@@ -86,7 +86,7 @@ func NewCFBDecrypter(block Block, iv []byte) Stream {
func newCFB(block Block, iv []byte, decrypt bool) Stream {
blockSize := block.BlockSize()
if len(iv) != blockSize {
- // stack trace will indicate whether it was de or encryption
+ // Stack trace will indicate whether it was de- or en-cryption.
panic("cipher.newCFB: IV length must equal block size")
}
x := &cfb{