type crypto/cipher.AEAD
16 uses
	crypto/cipher (current package)
		gcm.go#L17: type AEAD interface {
		gcm.go#L53: 	NewGCM(nonceSize, tagSize int) (AEAD, error)
		gcm.go#L85: func NewGCM(cipher Block) (AEAD, error) {
		gcm.go#L96: func NewGCMWithNonceSize(cipher Block, size int) (AEAD, error) {
		gcm.go#L108: func NewGCMWithTagSize(cipher Block, tagSize int) (AEAD, error) {
		gcm.go#L112: func newGCMWithNonceAndTagSize(cipher Block, nonceSize, tagSize int) (AEAD, error) {
	crypto/aes
		aes_gcm.go#L47: func (c *aesCipherGCM) NewGCM(nonceSize, tagSize int) (cipher.AEAD, error) {
		modes.go#L15: 	NewGCM(nonceSize, tagSize int) (cipher.AEAD, error)
	crypto/internal/boring
		notboring.go#L52: func NewGCMTLS(cipher.Block) (cipher.AEAD, error)   { panic("boringcrypto: not available") }
	crypto/tls
		cipher_suites.go#L433: 	cipher.AEAD
		cipher_suites.go#L451: 	aead  cipher.AEAD
		cipher_suites.go#L472: 	aead      cipher.AEAD
		cipher_suites.go#L511: 	var aead cipher.AEAD
		conn.go#L906: 		case cipher.AEAD:
	vendor/golang.org/x/crypto/chacha20poly1305
		chacha20poly1305.go#L40: func New(key []byte) (cipher.AEAD, error) {
		xchacha20poly1305.go#L24: func NewX(key []byte) (cipher.AEAD, error) {
|  | The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |