Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sealGeneric (0.07 sec)

  1. lib/fips140/v1.1.0-rc1.zip

    gcmPlatformData struct { productTable [256]byte } func initGCM(g *GCM) { if !supportsAESGCM { return } gcmAesInit(&g.productTable, aes.EncryptionKeySchedul(&g.cipher)) } func seal(out []byte, g *GCM, nonce, plaintext, data []byte) { if !supportsAESGCM { sealGeneric(out, g, nonce, plaintext, data) return } var counter, tagMask [gcmBlockSize]byte if len(nonce) == gcmStandardNonceSize { // Init counter to nonce||1 copy(counter[:], nonce) counter[gcmBlockSize-1] = 1 } else { // Otherwise counter = GHASH(nonce)...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top