func crypto/internal/fips140/aes.NewCBCEncrypter

3 uses

	crypto/internal/fips140/aes (current package)
		cast.go#L37: 		NewCBCEncrypter(b, iv).CryptBlocks(buf, plaintext)
		cbc.go#L20: func NewCBCEncrypter(b *Block, iv [BlockSize]byte) *CBCEncrypter {

	crypto/cipher
		cbc.go#L55: 		return aes.NewCBCEncrypter(b, [16]byte(iv))