type crypto/cipher.BlockMode

9 uses

	crypto/cipher (current package)
		cbc.go#L39: 	NewCBCEncrypter(iv []byte) BlockMode
		cbc.go#L45: func NewCBCEncrypter(b Block, iv []byte) BlockMode {
		cbc.go#L99: 	NewCBCDecrypter(iv []byte) BlockMode
		cbc.go#L105: func NewCBCDecrypter(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#L326: 	cipher.BlockMode
		conn.go#L1149: 		if _, ok := c.out.cipher.(cipher.BlockMode); ok {