func crypto/cipher.NewCTR

4 uses

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

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

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