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)},