Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. lib/fips140/v1.0.0.zip

    &g.cipher)) } gcmAesFinish(&g.productTable, &tagMask, &tagOut, uint64(len(plaintext)), uint64(len(data))) copy(out[len(plaintext):], tagOut[:]) } func open(out []byte, g *GCM, nonce, ciphertext, data []byte) error { if !supportsAESGCM { return openGeneric(out, g, nonce, ciphertext, data) } tag := ciphertext[len(ciphertext)-g.tagSize:] ciphertext = ciphertext[:len(ciphertext)-g.tagSize] // See GCM spec, section 7.1. var counter, tagMask [gcmBlockSize]byte if len(nonce) == gcmStandardNonceSize { //...
    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