Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 221 of 221 for recommend (0.06 sec)

  1. lib/fips140/v1.0.0.zip

    return nil, errors.New("cipher: NewGCM requires 128-bit block cipher") } g.cipher = *cipher g.nonceSize = nonceSize g.tagSize = tagSize initGCM(g) return g, nil } const ( gcmBlockSize = 16 gcmTagSize = 16 gcmMinimumTagSize = 12 // NIST SP 800-38D recommends tags with 12 or more bytes. gcmStandardNonceSize = 12 ) func (g *GCM) NonceSize() int { return g.nonceSize } func (g *GCM) Overhead() int { return g.tagSize } func (g *GCM) Seal(dst, nonce, plaintext, data []byte) []byte { fips140.RecordNonApproved()...
    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