func crypto/cipher.NewCTR

5 uses

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

	crypto/ecdsa
		ecdsa.go#L450: 		S: cipher.NewCTR(block, []byte(aesIV)),

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

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