func crypto/internal/rand.CustomReader

11 uses

	crypto/internal/rand (current package)
		rand.go#L56: func CustomReader(r io.Reader) io.Reader {

	crypto/dsa
		dsa.go#L223: 	random = rand.CustomReader(random)

	crypto/ecdh
		nist.go#L48: 	r = rand.CustomReader(r)
		x25519.go#L41: 	r = rand.CustomReader(r)

	crypto/ecdsa
		ecdsa.go#L327: 	random = rand.CustomReader(random)
		ecdsa.go#L346: 	r = rand.CustomReader(r)
		ecdsa.go#L392: 	r = rand.CustomReader(r)

	crypto/rand
		util.go#L29: 	r = rand.CustomReader(r)

	crypto/rsa
		pkcs1v15.go#L73: 	random = rand.CustomReader(random)
		rsa.go#L353: 	random = rand.CustomReader(random)
		rsa.go#L437: 	random = rand.CustomReader(random)