func crypto/aes.NewCipher

18 uses

	crypto/aes (current package)
		cipher.go#L32: func NewCipher(key []byte) (cipher.Block, error) {

	crypto/ecdsa
		ecdsa.go#L223: 	block, err := aes.NewCipher(key)

	crypto/rand
		rand_unix.go#L138: 			r.cipher, err = aes.NewCipher(r.key[0:])

	crypto/tls
		cipher_suites.go#L243: 	block, _ := aes.NewCipher(key)
		cipher_suites.go#L336: 	aes, err := aes.NewCipher(key)
		cipher_suites.go#L354: 	aes, err := aes.NewCipher(key)
		ticket.go#L134: 	block, err := aes.NewCipher(key.aesKey[:])
		ticket.go#L177: 	block, err := aes.NewCipher(key.aesKey[:])

	crypto/x509
		pem_decrypt.go#L61: 	cipherFunc: aes.NewCipher,
		pem_decrypt.go#L67: 	cipherFunc: aes.NewCipher,
		pem_decrypt.go#L73: 	cipherFunc: aes.NewCipher,

	golang.org/x/crypto/openpgp/packet
		packet.go#L522: 		block, _ = aes.NewCipher(key)

	golang.org/x/crypto/ssh
		cipher.go#L48: 	c, err := aes.NewCipher(key)
		cipher.go#L311: 	c, err := aes.NewCipher(key)
		cipher.go#L443: 	c, err := aes.NewCipher(key)
		keys.go#L1249: 		c, err := aes.NewCipher(key)

	google.golang.org/grpc/credentials/alts/internal/conn
		aeadrekey.go#L96: 	a, err := aes.NewCipher(hkdfExpand(s.kdfKey, s.kdfCounter))
		aes128gcm.go#L48: 	c, err := aes.NewCipher(key)