type crypto/cipher.Block

28 uses

	crypto/cipher (current package)
		cbc.go#L21: 	b         Block
		cbc.go#L27: func newCBC(b Block, iv []byte) *cbc {
		cbc.go#L49: func NewCBCEncrypter(b Block, iv []byte) BlockMode {
		cbc.go#L63: func newCBCGenericEncrypter(b Block, iv []byte) BlockMode {
		cbc.go#L120: func NewCBCDecrypter(b Block, iv []byte) BlockMode {
		cbc.go#L134: func newCBCGenericDecrypter(b Block, iv []byte) BlockMode {
		cfb.go#L15: 	b       Block
		cfb.go#L56: func NewCFBEncrypter(block Block, iv []byte) Stream {
		cfb.go#L63: func NewCFBDecrypter(block Block, iv []byte) Stream {
		cfb.go#L67: func newCFB(block Block, iv []byte, decrypt bool) Stream {
		cipher.go#L15: type Block interface {
		ctr.go#L22: 	b       Block
		ctr.go#L39: func NewCTR(block Block, iv []byte) Stream {
		gcm.go#L71: 	cipher    Block
		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) {
		ofb.go#L15: 	b       Block
		ofb.go#L24: func NewOFB(b Block, iv []byte) Stream {

	crypto/aes
		cipher.go#L34: func NewCipher(key []byte) (cipher.Block, error) {
		cipher.go#L50: func newCipherGeneric(key []byte) (cipher.Block, error) {
		cipher_asm.go#L43: func newCipher(key []byte) (cipher.Block, error) {

	crypto/des
		cipher.go#L29: func NewCipher(key []byte) (cipher.Block, error) {
		cipher.go#L73: func NewTripleDESCipher(key []byte) (cipher.Block, error) {

	crypto/internal/boring
		notboring.go#L51: func NewAESCipher(key []byte) (cipher.Block, error) { panic("boringcrypto: not available") }
		notboring.go#L52: func NewGCMTLS(cipher.Block) (cipher.AEAD, error)   { panic("boringcrypto: not available") }

	crypto/x509
		pem_decrypt.go#L39: 	cipherFunc func(key []byte) (cipher.Block, error)