func golang.org/x/crypto/ssh.streamCipherMode
7 uses
golang.org/x/crypto/ssh (current package)
cipher.go#L65: func streamCipherMode(skip int, createFunc func(key, iv []byte) (cipher.Stream, error)) func(key, iv []byte, macKey []byte, algs directionAlgorithms) (packetCipher, error) {
cipher.go#L102: "aes128-ctr": {16, aes.BlockSize, streamCipherMode(0, newAESCTR)},
cipher.go#L103: "aes192-ctr": {24, aes.BlockSize, streamCipherMode(0, newAESCTR)},
cipher.go#L104: "aes256-ctr": {32, aes.BlockSize, streamCipherMode(0, newAESCTR)},
cipher.go#L108: "arcfour128": {16, 0, streamCipherMode(1536, newRC4)},
cipher.go#L109: "arcfour256": {32, 0, streamCipherMode(1536, newRC4)},
cipher.go#L115: "arcfour": {16, 0, streamCipherMode(0, newRC4)},
 |
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. |