Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for encryptBlockGeneric (0.1 sec)

  1. 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)
Back to top