Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NewCBCEncrypter (0.07 sec)

  1. lib/fips140/v1.0.0.zip

    LICENSE file. package aes import ( "crypto/internal/fips140" "crypto/internal/fips140/alias" "crypto/internal/fips140/subtle" ) type CBCEncrypter struct { b Block iv [BlockSize]byte } // NewCBCEncrypter returns a [cipher.BlockMode] which encrypts in cipher block // chaining mode, using the given Block. func NewCBCEncrypter(b *Block, iv [BlockSize]byte) *CBCEncrypter { return &CBCEncrypter{b: *b, iv: iv} } func (c *CBCEncrypter) BlockSize() int { return BlockSize } func (c *CBCEncrypter) 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)
Back to top