- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for NewGCMForSSH (0.09 sec)
-
lib/fips140/v1.0.0-c2097c7c.zip
(g *GCMForTLS13) Open(dst, nonce, ciphertext, data []byte) ([]byte, error) { fips140.RecordApproved() return g.g.Open(dst, nonce, ciphertext, data) } // NewGCMForSSH returns a new AEAD that works like GCM, but enforces the // construction of nonces as specified in RFC 5647. // // This complies with FIPS 140-3 IG C.H Scenario 1.d. func NewGCMForSSH(cipher *aes.Block) (*GCMForSSH, error) { g, err := newGCM(&GCM{}, cipher, gcmStandardNonceSize, gcmTagSize) if err != nil { return nil, err } return &GCMForSSH{g:...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Sep 25 19:53:19 UTC 2025 - 642.7K bytes - Viewed (0) -
lib/fips140/v1.1.0-rc1.zip
gcmTagSize) if err != nil { return nil, err } // TLS 1.2 counters always start at zero. return &GCMWithCounterNonce{g: *g, startReady: true}, nil } // NewGCMForSSH returns a new AEAD that works like GCM, but enforces the // construction of nonces as specified in RFC 5647. // // This complies with FIPS 140-3 IG C.H Scenario 1.d. func NewGCMForSSH(cipher *aes.Block) (*GCMWithCounterNonce, error) { g, err := newGCM(&GCM{}, cipher, gcmStandardNonceSize, gcmTagSize) if err != nil { return nil, err }...Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0)