Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for gcmAuth (0.05 sec)

  1. lib/fips140/v1.0.0.zip

    counter[gcmBlockSize-1] = 1 } else { var hash [16]byte paddedGHASH(H, &hash, nonce) lens := gcmLengths(0, uint64(len(nonce))*8) paddedGHASH(H, &hash, lens[:]) copy(counter[:], hash[:]) } } // gcmAuth calculates GHASH(additionalData, ciphertext), masks the result // with tagMask and writes the result to out. func gcmAuth(out []byte, H *gcmHashKey, tagMask *[gcmBlockSize]byte, ciphertext, additionalData []byte) { var hash [16]byte paddedGHASH(H, &hash, additionalData) paddedGHASH(H, &hash, ciphertext) lens...
    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