golang.org/x/crypto/sha3.ShakeHash.Read (method)

65 uses

	golang.org/x/crypto/sha3 (current package)
		shake.go#L72: 	h.Read(hash)
		shake.go#L79: 	h.Read(hash)
		shake.go#L117: 	s.Read(out)

	bufio
		bufio.go#L113: 		n, err := b.rd.Read(b.buf[b.w:])
		bufio.go#L231: 			n, b.err = b.rd.Read(p)
		bufio.go#L245: 		n, b.err = b.rd.Read(b.buf)
		bufio.go#L804: 			m, err = r.Read(b.buf[b.n:])
		scan.go#L219: 			n, err := s.r.Read(s.buf[s.end:len(s.buf)])

	bytes
		buffer.go#L229: 		m, e := r.Read(b.buf[i:cap(b.buf)])

	compress/gzip
		gunzip.go#L252: 		n, z.err = z.decompressor.Read(p)

	compress/zlib
		reader.go#L98: 	n, z.err = z.decompressor.Read(p)

	crypto/cipher
		io.go#L20: 	n, err = r.R.Read(dst)

	crypto/internal/fips140/drbg
		rand.go#L25: 		testingReader.Read(bb)

	crypto/internal/randutil
		randutil.go#L25: 	r.Read(buf[:])

	crypto/tls
		conn.go#L815: 	n, err := r.R.Read(p)
		handshake_server_tls13.go#L1010: 	if _, err := c.config.rand().Read(ageAdd); err != nil {

	encoding/base64
		base64.go#L469: 		nn, d.readErr = d.r.Read(d.buf[d.nbuf:nn])
		base64.go#L627: 	n, err := r.wrapped.Read(p)
		base64.go#L642: 		n, err = r.wrapped.Read(p)

	encoding/hex
		hex.go#L211: 		numRead, d.err = d.r.Read(d.arr[numCopy:])

	encoding/json
		stream.go#L167: 	n, err := dec.r.Read(dec.buf[len(dec.buf):cap(dec.buf)])

	github.com/andybalholm/brotli
		reader.go#L50: 		m, readErr := r.src.Read(r.buf)
		reader.go#L101: 		encN, err := r.src.Read(r.buf)

	github.com/coder/websocket
		netconn.go#L183: 	n, err := nc.reader.Read(p)
		read.go#L522: 		return lr.r.Read(p)
		read.go#L534: 	n, err := lr.r.Read(p)

	github.com/go-faster/jx
		dec_raw.go#L23: 	n, err = r.orig.Read(p)
		dec_read.go#L105: 	n, err := d.reader.Read(d.buf)

	github.com/gotd/td/mtproxy/obfuscated2
		obfuscated2.go#L51: 	n, err := o.conn.Read(b)

	github.com/gotd/td/mtproxy/obfuscator
		dialer.go#L39: 	return o.Obfuscator.Read(b)

	github.com/gotd/td/proto
		gzip.go#L122: 	n, err = c.reader.Read(p)

	github.com/gotd/td/syncio
		reader.go#L22: 	n, err = s.r.Read(p)

	github.com/gotd/td/transport
		listener.go#L39: 	return w.reader.Read(b)
		obfuscated.go#L26: 	return c.reader.Read(p)
		websocket.go#L121: 	return c.reader.Read(p)

	github.com/klauspost/compress/gzip
		gunzip.go#L262: 		n, z.err = z.decompressor.Read(p)

	github.com/klauspost/compress/zstd
		encoder.go#L386: 		n2, err := r.Read(src)

	github.com/refraction-networking/utls
		conn.go#L810: 	n, err := r.R.Read(p)
		handshake_server_tls13.go#L1019: 	if _, err := c.config.rand().Read(ageAdd); err != nil {
		u_handshake_client.go#L103: 	n, err := decompressed.Read(rawMsg[4:])
		u_key_schedule.go#L28: 	h.Read(out)

	io
		io.go#L87: 	Read(p []byte) (n int, err error)
		io.go#L335: 		nn, err = r.Read(buf[n:])
		io.go#L429: 		nr, er := src.Read(buf)
		io.go#L479: 	n, err = l.R.Read(p)
		io.go#L628: 	n, err = t.r.Read(p)
		io.go#L666: 		readSize, err = r.Read(*bufp)
		io.go#L722: 		n, err := r.Read(b[len(b):cap(b)])
		multi.go#L26: 		n, err = mr.readers[0].Read(p)

	mime/multipart
		multipart.go#L144: 	n, r.err = r.r.Read(p)
		multipart.go#L185: 	return p.r.Read(d)

	net/http
		client.go#L986: 	n, err = b.rc.Read(p)
		h2_bundle.go#L3918: 			return p.b.Read(d)
		h2_bundle.go#L9178: 		n, err := body.Read(buf)
		h2_bundle.go#L9191: 				n1, err = body.Read(scratch[:])
		request.go#L1225: 	n, err = l.r.Read(p)
		response.go#L269: 		n, err := r1.Body.Read(buf[:])
		server.go#L953: 	n, err = ecr.readCloser.Read(p)
		transfer.go#L213: 		rres.n, rres.err = body.Read(buf[:])
		transfer.go#L845: 	n, err = b.src.Read(p)
		transport.go#L769: 	return r.ReadCloser.Read(data)
		transport.go#L2630: 	return b.ReadWriteCloser.Read(p)
		transport.go#L3075: 	n, err = es.body.Read(p)

	vendor/golang.org/x/text/transform
		transform.go#L199: 		n, r.err = r.r.Read(r.src[r.src1:])

	vendor/golang.org/x/text/unicode/norm
		readwriter.go#L100: 		n, err := r.r.Read(r.inbuf)