Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for sealGeneric (0.08 seconds)

  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)...
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Dec 11 16:27:41 GMT 2025
    - 663K bytes
    - Click Count (0)
Back to Top