- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for NewCBCDecrypter (0.07 sec)
-
lib/fips140/v1.0.0-c2097c7c.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 Sep 25 19:53:19 UTC 2025 - 642.7K bytes - Viewed (0) -
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) -
api/go1.txt
pkg crypto/aes, const BlockSize ideal-int pkg crypto/aes, func NewCipher([]uint8) (cipher.Block, error) pkg crypto/aes, method (KeySizeError) Error() string pkg crypto/aes, type KeySizeError int pkg crypto/cipher, func NewCBCDecrypter(Block, []uint8) BlockMode pkg crypto/cipher, func NewCBCEncrypter(Block, []uint8) BlockMode pkg crypto/cipher, func NewCFBDecrypter(Block, []uint8) Stream pkg crypto/cipher, func NewCFBEncrypter(Block, []uint8) Stream
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0)