func crypto/cipher.NewCTR

7 uses

	crypto/cipher (current package)
		ctr.go#L41: func NewCTR(block Block, iv []byte) Stream {

	crypto/tls
		ticket.go#L344: 	cipher.NewCTR(block, iv).XORKeyStream(ciphertext, state)
		ticket.go#L394: 		cipher.NewCTR(block, iv).XORKeyStream(plaintext, ciphertext)

	github.com/gotd/td/mtproxy/obfuscated2
		keys_util.go#L15: 	return cipher.NewCTR(block, iv), nil

	github.com/gotd/td/telegram/downloader
		cdn_verify.go#L333: 	cipher.NewCTR(block, iv.Buf).XORKeyStream(dst, src)

	github.com/refraction-networking/utls
		ticket.go#L339: 	cipher.NewCTR(block, iv).XORKeyStream(ciphertext, state)
		ticket.go#L389: 		cipher.NewCTR(block, iv).XORKeyStream(plaintext, ciphertext)