Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for sealAsm (0.06 seconds)

  1. lib/fips140/v1.26.0.zip

    hash[:]) for i := range out { out[i] ^= tagMask[i] } } func seal(out []byte, g *GCM, nonce, plaintext, data []byte) { switch { case useGCM: sealKMA(out, g, nonce, plaintext, data) case useGHASH: sealAsm(out, g, nonce, plaintext, data) default: sealGeneric(out, g, nonce, plaintext, data) } } func sealAsm(out []byte, g *GCM, nonce, plaintext, additionalData []byte) { var counter, tagMask [gcmBlockSize]byte deriveCounter(&g.hashKey, &counter, nonce) counterCrypt(g, tagMask[:], tagMask[:], &counter)...
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jan 08 17:58:32 GMT 2026
    - 660.3K bytes
    - Click Count (0)
Back to Top