crypto/cipher.AEAD.Overhead (method)

6 uses

	crypto/cipher (current package)
		gcm.go#L24: 	Overhead() int

	crypto/tls
		cipher_suites.go#L455: func (f *prefixNonceAEAD) Overhead() int         { return f.aead.Overhead() }
		cipher_suites.go#L476: func (f *xorNonceAEAD) Overhead() int         { return f.aead.Overhead() }
		conn.go#L374: 				n := len(payload) - c.Overhead()
		conn.go#L524: 			n := len(payload) + 1 + c.Overhead()
		conn.go#L907: 			payloadBytes -= ciph.Overhead()