Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for cryptBlocksDec (3.36 sec)

  1. lib/fips140/v1.0.0.zip

    not full blocks") } if len(dst) < len(src) { panic("crypto/cipher: output smaller than input") } if alias.InexactOverlap(dst[:len(src)], src) { panic("crypto/cipher: invalid buffer overlap") } fips140.RecordApproved() if len(src) == 0 { return } cryptBlocksDec(&c.b, &c.iv, dst, src) } func (x *CBCDecrypter) SetIV(iv []byte) { if len(iv) != len(x.iv) { panic("cipher: incorrect length IV") } copy(x.iv[:], iv) } func cryptBlocksDecGeneri(b *Block, civ *[BlockSize]byte, dst, src []byte) { // For each block,...
    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