type crypto/cipher.Stream

22 uses

	crypto/cipher (current package)
		cfb.go#L63: func NewCFBEncrypter(block Block, iv []byte) Stream {
		cfb.go#L79: func NewCFBDecrypter(block Block, iv []byte) Stream {
		cfb.go#L86: func newCFB(block Block, iv []byte, decrypt bool) Stream {
		cipher.go#L29: type Stream interface {
		ctr.go#L36: 	NewCTR(iv []byte) Stream
		ctr.go#L41: func NewCTR(block Block, iv []byte) Stream {
		io.go#L15: 	S Stream
		io.go#L31: 	S   Stream
		ofb.go#L31: func NewOFB(b Block, iv []byte) Stream {

	crypto/tls
		conn.go#L262: 	case cipher.Stream:
		conn.go#L357: 		case cipher.Stream:
		conn.go#L507: 	case cipher.Stream:
		conn.go#L914: 		case cipher.Stream:

	github.com/gotd/td/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) {

	github.com/refraction-networking/utls
		conn.go#L266: 	case cipher.Stream:
		conn.go#L361: 		case cipher.Stream:
		conn.go#L511: 	case cipher.Stream:
		conn.go#L909: 		case cipher.Stream:

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

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