- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for cryptBlocksChain (0.11 sec)
-
lib/fips140/v1.0.0-c2097c7c.zip
file. //go:build (ppc64 || ppc64le) && !purego package aes // cryptBlocksChain invokes the cipher message identifying encrypt or decrypt. // //go:noescape func cryptBlocksChain(src, dst *byte, length int, key *uint32, iv *byte, enc int, nr int) const cbcEncrypt = 1 const cbcDecrypt = 0 func cryptBlocksEnc(b *Block, civ *[BlockSize]byte, dst, src []byte) { if !supportsAES { cryptBlocksEncGeneri(b, civ, dst, src) } else { cryptBlocksChain(&src[0], &dst[0], len(src), &b.enc[0], &civ[0], cbcEncrypt, b.rounds)...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Sep 25 19:53:19 UTC 2025 - 642.7K bytes - Viewed (0) -
lib/fips140/v1.1.0-rc1.zip
file. //go:build (ppc64 || ppc64le) && !purego package aes // cryptBlocksChain invokes the cipher message identifying encrypt or decrypt. // //go:noescape func cryptBlocksChain(src, dst *byte, length int, key *uint32, iv *byte, enc int, nr int) const cbcEncrypt = 1 const cbcDecrypt = 0 func cryptBlocksEnc(b *Block, civ *[BlockSize]byte, dst, src []byte) { if !supportsAES { cryptBlocksEncGeneri(b, civ, dst, src) } else { cryptBlocksChain(&src[0], &dst[0], len(src), &b.enc[0], &civ[0], cbcEncrypt, b.rounds)...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0)