Home | History | Annotate | Download | only in transport

Lines Matching defs:mac

19 import ch.ethz.ssh2.crypto.digest.MAC;
267 int mac_cs_key_len = MAC.getKeyLen(kxs.np.mac_algo_client_to_server);
271 int mac_sc_key_len = MAC.getKeyLen(kxs.np.mac_algo_server_to_client);
298 MAC mac;
305 mac = new MAC(kxs.np.mac_algo_client_to_server, km.integrity_key_client_to_server);
310 throw new IOException("Fatal error during MAC startup!");
313 tm.changeSendCipher(cbc, mac);
479 MAC mac;
486 mac = new MAC(kxs.np.mac_algo_server_to_client, km.integrity_key_server_to_client);
491 throw new IOException("Fatal error during MAC startup!");
494 tm.changeRecvCipher(cbc, mac);