type crypto/cipher.BlockMode

11 uses

	crypto/cipher (current package)
		cbc.go#L43: 	NewCBCEncrypter(iv []byte) BlockMode
		cbc.go#L49: func NewCBCEncrypter(b Block, iv []byte) BlockMode {
		cbc.go#L63: func newCBCGenericEncrypter(b Block, iv []byte) BlockMode {
		cbc.go#L114: 	NewCBCDecrypter(iv []byte) BlockMode
		cbc.go#L120: func NewCBCDecrypter(b Block, iv []byte) BlockMode {
		cbc.go#L134: func newCBCGenericDecrypter(b Block, iv []byte) BlockMode {
		cipher.go#L45: type BlockMode interface {

	crypto/aes
		modes.go#L22: 	NewCBCEncrypter(iv []byte) cipher.BlockMode
		modes.go#L29: 	NewCBCDecrypter(iv []byte) cipher.BlockMode

	crypto/tls
		conn.go#L332: 	cipher.BlockMode
		conn.go#L1223: 		if _, ok := c.out.cipher.(cipher.BlockMode); ok {