Home
last modified time | relevance | path

Searched refs:client_n (Results 1 – 3 of 3) sorted by relevance

/external/openssh/
Dauth-rsa.c172 const BIGNUM *client_n, Key **rkey) in rsa_key_allowed_in_file() argument
231 if (BN_cmp(key->rsa->n, client_n) != 0) in rsa_key_allowed_in_file()
284 auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey) in auth_rsa_key_allowed() argument
296 allowed = rsa_key_allowed_in_file(pw, file, client_n, rkey); in auth_rsa_key_allowed()
311 auth_rsa(Authctxt *authctxt, BIGNUM *client_n) in auth_rsa() argument
320 if (!PRIVSEP(auth_rsa_key_allowed(pw, client_n, &key))) { in auth_rsa()
Dmonitor.c1647 BIGNUM *client_n; in mm_answer_rsa_keyallowed() local
1657 if ((client_n = BN_new()) == NULL) in mm_answer_rsa_keyallowed()
1659 buffer_get_bignum2(m, client_n); in mm_answer_rsa_keyallowed()
1660 allowed = auth_rsa_key_allowed(authctxt->pw, client_n, &key); in mm_answer_rsa_keyallowed()
1661 BN_clear_free(client_n); in mm_answer_rsa_keyallowed()
Dmonitor_wrap.c878 mm_auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey) in mm_auth_rsa_key_allowed() argument
889 buffer_put_bignum2(&m, client_n); in mm_auth_rsa_key_allowed()