- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for encryptBlockGeneric (0.09 sec)
-
lib/fips140/v1.0.0.zip
to the assembly implementation. func EncryptionKeySchedul(c *Block) []uint32 { return c.enc[:c.roundKeysSize()] } func encryptBlock(c *Block, dst, src []byte) { if supportsAES { encryptBlockAsm(c.rounds, &c.enc[0], &dst[0], &src[0]) } else { encryptBlockGeneric(&c.blockExpanded, dst, src) } } func decryptBlock(c *Block, dst, src []byte) { if supportsAES { decryptBlockAsm(c.rounds, &c.dec[0], &dst[0], &src[0]) } else { decryptBlockGeneric(&c.blockExpanded, dst, src) } } golang.org/fips140@v1.0.0/fi...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)