Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for cryptBlocksChain (1.77 sec)

  1. lib/fips140/v1.0.0.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 Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top