golang.org/x/crypto/ssh.handshakeTransport.config (field)

13 uses

	golang.org/x/crypto/ssh (current package)
		handshake.go#L43: 	config *Config
		handshake.go#L113: 		config: config,
		handshake.go#L250: 	if t.config.RekeyThreshold > 0 {
		handshake.go#L251: 		t.writeBytesLeft = int64(t.config.RekeyThreshold)
		handshake.go#L364: 	if t.config.RekeyThreshold > 0 {
		handshake.go#L365: 		t.readBytesLeft = int64(t.config.RekeyThreshold)
		handshake.go#L448: 		KexAlgos:                t.config.KeyExchanges,
		handshake.go#L449: 		CiphersClientServer:     t.config.Ciphers,
		handshake.go#L450: 		CiphersServerClient:     t.config.Ciphers,
		handshake.go#L451: 		MACsClientServer:        t.config.MACs,
		handshake.go#L452: 		MACsServerClient:        t.config.MACs,
		handshake.go#L622: 	r, err := kex.Server(t.conn, t.config.Rand, magics, hostKey)
		handshake.go#L627: 	result, err := kex.Client(t.conn, t.config.Rand, magics)