Searched refs:cwl (Results 1 – 3 of 3) sorted by relevance
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/ |
D | PacketKexInit.java | 25 public PacketKexInit(CryptoWishList cwl, SecureRandom rnd) in PacketKexInit() argument 30 kp.kex_algorithms = cwl.kexAlgorithms; in PacketKexInit() 31 kp.server_host_key_algorithms = cwl.serverHostKeyAlgorithms; in PacketKexInit() 32 kp.encryption_algorithms_client_to_server = cwl.c2s_enc_algos; in PacketKexInit() 33 kp.encryption_algorithms_server_to_client = cwl.s2c_enc_algos; in PacketKexInit() 34 kp.mac_algorithms_client_to_server = cwl.c2s_mac_algos; in PacketKexInit() 35 kp.mac_algorithms_server_to_client = cwl.s2c_mac_algos; in PacketKexInit()
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/ |
D | TransportManager.java | 466 public void initialize(String identification, CryptoWishList cwl, ServerHostKeyVerifier verifier, in initialize() argument 483 km = new KexManager(this, csh, cwl, hostname, port, verifier, rnd); in initialize() 484 km.initiateKEX(cwl, dhgex); in initialize() 597 public void forceKeyExchange(CryptoWishList cwl, DHGexParameters dhgex) throws IOException in forceKeyExchange() argument 599 km.initiateKEX(cwl, dhgex); in forceKeyExchange()
|
D | KexManager.java | 247 public synchronized void initiateKEX(CryptoWishList cwl, DHGexParameters dhgex) throws IOException in initiateKEX() argument 249 nextKEXcryptoWishList = cwl; in initiateKEX()
|