Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for additionalData (0.14 sec)

  1. lib/fips140/v1.0.0.zip

    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 := gcmLengths(uint64(len(additionalData))*8, uint64(len(ciphertext))*8) paddedGHASH(H, &hash, lens[:]) copy(out, hash[:]) for...
    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