type crypto/cipher.BlockMode

11 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#L318: 	cipher.BlockMode
		conn.go#L1141: 		if _, ok := c.out.cipher.(cipher.BlockMode); ok {

	golang.org/x/crypto/ssh
		cipher.go#L415: 	decrypter cipher.BlockMode
		cipher.go#L416: 	encrypter cipher.BlockMode