We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8131635 commit 63ec70dCopy full SHA for 63ec70d
src/crypto/cipher/cfb.go
@@ -86,7 +86,7 @@ func NewCFBDecrypter(block Block, iv []byte) Stream {
86
func newCFB(block Block, iv []byte, decrypt bool) Stream {
87
blockSize := block.BlockSize()
88
if len(iv) != blockSize {
89
- // stack trace will indicate whether it was de or encryption
+ // Stack trace will indicate whether it was de- or en-cryption.
90
panic("cipher.newCFB: IV length must equal block size")
91
}
92
x := &cfb{
0 commit comments