func crypto/aes.NewCipher
11 uses
crypto/aes (current package)
cipher.go#L32: func NewCipher(key []byte) (cipher.Block, error) {
crypto/ecdsa
ecdsa.go#L224: block, err := aes.NewCipher(key)
crypto/rand
rand_unix.go#L138: r.cipher, err = aes.NewCipher(r.key[0:])
crypto/tls
cipher_suites.go#L416: block, _ := aes.NewCipher(key)
cipher_suites.go#L509: aes, err := aes.NewCipher(key)
cipher_suites.go#L527: 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,