- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for NewCBCDecrypter (0.08 sec)
-
lib/fips140/v1.0.0.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 Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)