func crypto/cipher.NewCTR
6 uses
crypto/cipher (current package)
ctr.go#L35: func NewCTR(block Block, iv []byte) Stream {
crypto/ecdsa
ecdsa.go#L232: S: cipher.NewCTR(block, []byte(aesIV)),
crypto/tls
ticket.go#L138: cipher.NewCTR(block, iv).XORKeyStream(encrypted[ticketKeyNameLen+aes.BlockSize:], state)
ticket.go#L182: cipher.NewCTR(block, iv).XORKeyStream(plaintext, ciphertext)
golang.org/x/crypto/ssh
cipher.go#L52: return cipher.NewCTR(c, iv), nil
keys.go#L1255: ctr := cipher.NewCTR(c, iv)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |