crypto/cipher.AEAD.Open (method)

4 uses

	crypto/cipher (current package)
		gcm.go#L46: 	Open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error)

	crypto/tls
		cipher_suites.go#L465: 	return f.aead.Open(out, f.nonce[:], ciphertext, additionalData)
		cipher_suites.go#L495: 	result, err := f.aead.Open(out, f.nonceMask[:], ciphertext, additionalData)
		conn.go#L379: 			plaintext, err = c.Open(payload[:0], nonce, payload, additionalData)