- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for cryptBlocksDecGeneri (0.29 sec)
-
lib/fips140/v1.0.0.zip
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, we need to xor the decrypted data with the previous // block's ciphertext (the iv). To avoid making a copy each time, we loop // over the blocks backwards. end := len(src)...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)