Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewCBCDecrypter (0.62 sec)

  1. 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)
  2. 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 Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top