HomeSort by relevance Sort by last modified time
    Searched full:client_host_key (Results 1 - 2 of 2) sorted by null

  /external/openssh/
auth-rh-rsa.c 43 Key *client_host_key)
47 if (auth_key_is_revoked(client_host_key))
54 host_status = check_key_in_hostfiles(pw, client_host_key,
66 auth_rhosts_rsa(Authctxt *authctxt, char *cuser, Key *client_host_key)
74 if (!authctxt->valid || client_host_key == NULL ||
75 client_host_key->rsa == NULL)
81 if (!PRIVSEP(auth_rhosts_rsa_key_allowed(pw, cuser, chost, client_host_key))) {
89 if (!auth_rsa_challenge_dialog(client_host_key)) {
auth1.c 168 Key *client_host_key; local
179 client_host_key = key_new(KEY_RSA1);
181 packet_get_bignum(client_host_key->rsa->e);
182 packet_get_bignum(client_host_key->rsa->n);
184 keybits = BN_num_bits(client_host_key->rsa->n);
186 verbose("Warning: keysize mismatch for client_host_key: "
188 BN_num_bits(client_host_key->rsa->n), bits);
193 client_host_key);
194 key_free(client_host_key);

Completed in 45 milliseconds