- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for NewCBCDecrypter (0.19 sec)
-
lib/fips140/v1.1.0-rc1.zip
dst[:BlockSize] src = src[BlockSize:] dst = dst[BlockSize:] } // Save the iv for the next CryptBlocks call. copy(civ[:], iv) } type CBCDecrypter struct { b Block iv [BlockSize]byte } // NewCBCDecrypter returns a [cipher.BlockMode] which decrypts in cipher block // chaining mode, using the given Block. func NewCBCDecrypter(b *Block, iv [BlockSize]byte) *CBCDecrypter { return &CBCDecrypter{b: *b, iv: iv} } func (c *CBCDecrypter) BlockSize() int { return BlockSize } func (c *CBCDecrypter) CryptBlocks(dst,...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0)