Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GCMWithCounterNonce (0.08 sec)

  1. lib/fips140/v1.0.0.zip

    C.H Scenario 3. func NewGCMWithCounterNon(cipher *aes.Block) (*GCMWithCounterNonce, error) { g, err := newGCM(&GCM{}, cipher, gcmStandardNonceSize, gcmTagSize) if err != nil { return nil, err } return &GCMWithCounterNonce{g: *g}, nil } type GCMWithCounterNonce struct { g GCM ready bool fixedName uint32 start uint64 next uint64 } func (g *GCMWithCounterNonce) NonceSize() int { return gcmStandardNonceSize } func (g *GCMWithCounterNonce) Overhead() int { return gcmTagSize } func (g *GCMWithCounterNonce)...
    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