Lines Matching full:keys
88 ses.keys = (struct key_context*)m_malloc(sizeof(struct key_context));
90 ses.keys->recv_algo_crypt = &dropbear_nocipher;
91 ses.keys->trans_algo_crypt = &dropbear_nocipher;
93 ses.keys->recv_algo_mac = &dropbear_nohash;
94 ses.keys->trans_algo_mac = &dropbear_nohash;
96 ses.keys->algo_kex = -1;
97 ses.keys->algo_hostkey = -1;
98 ses.keys->recv_algo_comp = DROPBEAR_COMP_NONE;
99 ses.keys->trans_algo_comp = DROPBEAR_COMP_NONE;
102 ses.keys->recv_zstream = NULL;
103 ses.keys->trans_zstream = NULL;
223 m_burn(ses.keys, sizeof(struct key_context));
224 m_free(ses.keys);