Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for gcmCounterCryptGener (2.39 sec)

  1. lib/fips140/v1.0.0.zip

    sealGeneric(out []byte, g *GCM, nonce, plaintext, additionalData []byte) { var H, counter, tagMask [gcmBlockSize]byte aes.EncryptBlockInternal(&g.cipher, H[:], H[:]) deriveCounterGeneric(&H, &counter, nonce) gcmCounterCryptGener(&g.cipher, tagMask[:], tagMask[:], &counter) gcmCounterCryptGener(&g.cipher, out, plaintext, &counter) var tag [gcmTagSize]byte gcmAuthGeneric(tag[:], &H, &tagMask, out[:len(plaintext)], additionalData) copy(out[len(plaintext):], tag[:]) } func openGeneric(out []byte, g *GCM,...
    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