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)
 |
The pages are generated with Golds v0.8.4. (GOOS=linux 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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |