type crypto/cipher.Stream

18 uses

	crypto/cipher (current package)
		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#L29: type Stream interface {
		ctr.go#L34: 	NewCTR(iv []byte) Stream
		ctr.go#L39: func NewCTR(block Block, iv []byte) Stream {
		io.go#L15: 	S Stream
		io.go#L31: 	S   Stream
		ofb.go#L24: func NewOFB(b Block, iv []byte) Stream {

	crypto/aes
		modes.go#L36: 	NewCTR(iv []byte) cipher.Stream

	crypto/tls
		conn.go#L261: 	case cipher.Stream:
		conn.go#L356: 		case cipher.Stream:
		conn.go#L506: 	case cipher.Stream:
		conn.go#L904: 		case cipher.Stream:

	github.com/gotd/td/internal/mtproxy/obfuscated2
		keys.go#L15: 	encrypt cipher.Stream
		keys.go#L16: 	decrypt cipher.Stream
		keys_util.go#L10: func createCTR(key, iv []byte) (cipher.Stream, error) {

	vendor/golang.org/x/crypto/chacha20
		chacha_generic.go#L61: var _ cipher.Stream = (*Cipher)(nil)