type crypto/internal/fips140/aes/gcm.GCMForTLS13

7 uses

	crypto/internal/fips140/aes/gcm (current package)
		gcm_nonces.go#L155: func NewGCMForTLS13(cipher *aes.Block) (*GCMForTLS13, error) {
		gcm_nonces.go#L160: 	return &GCMForTLS13{g: *g}, nil
		gcm_nonces.go#L163: type GCMForTLS13 struct {
		gcm_nonces.go#L170: func (g *GCMForTLS13) NonceSize() int { return gcmStandardNonceSize }
		gcm_nonces.go#L172: func (g *GCMForTLS13) Overhead() int { return gcmTagSize }
		gcm_nonces.go#L174: func (g *GCMForTLS13) Seal(dst, nonce, plaintext, data []byte) []byte {
		gcm_nonces.go#L200: func (g *GCMForTLS13) Open(dst, nonce, ciphertext, data []byte) ([]byte, error) {