- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for dst3 (0.03 sec)
-
lib/fips140/v1.0.0.zip
incorrect length IV") } copy(x.iv[:], iv) } func cryptBlocksEncGeneri(b *Block, civ *[BlockSize]byte, dst, src []byte) { iv := civ[:] for len(src) > 0 { // Write the xor to dst, then encrypt in place. subtle.XORBytes(dst[:BlockSize], src[:BlockSize], iv) encryptBlock(b, dst[:BlockSize], dst[:BlockSize]) // Move to the next block with this block as the next iv. iv = dst[:BlockSize] src = src[BlockSize:] dst = dst[BlockSize:] } // Save the iv for the next CryptBlocks call. copy(civ[:], iv) } type CBCDecrypter...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)