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

7 uses

	crypto/internal/fips140/aes/gcm (current package)
		gcm_nonces.go#L209: func NewGCMForSSH(cipher *aes.Block) (*GCMForSSH, error) {
		gcm_nonces.go#L214: 	return &GCMForSSH{g: *g}, nil
		gcm_nonces.go#L217: type GCMForSSH struct {
		gcm_nonces.go#L224: func (g *GCMForSSH) NonceSize() int { return gcmStandardNonceSize }
		gcm_nonces.go#L226: func (g *GCMForSSH) Overhead() int { return gcmTagSize }
		gcm_nonces.go#L228: func (g *GCMForSSH) Seal(dst, nonce, plaintext, data []byte) []byte {
		gcm_nonces.go#L254: func (g *GCMForSSH) Open(dst, nonce, ciphertext, data []byte) ([]byte, error) {