Searched refs:pktype (Results 1 – 5 of 5) sorted by relevance
/external/openssh/ |
D | auth2-hostbased.c | 66 int pktype; in userauth_hostbased() local 88 pktype = key_type_from_name(pkalg); in userauth_hostbased() 89 if (pktype == KEY_UNSPEC) { in userauth_hostbased() 100 if (key->type != pktype) { in userauth_hostbased() 102 "(received %d, expected %d)", key->type, pktype); in userauth_hostbased()
|
D | ssh-keysign.c | 77 int r, pktype, fail; in valid_request() local 120 pktype = sshkey_type_from_name(pkalg); in valid_request() 121 if (pktype == KEY_UNSPEC) in valid_request() 126 } else if (key->type != pktype) in valid_request()
|
D | auth2-pubkey.c | 85 int have_sig, pktype; in userauth_pubkey() local 106 pktype = key_type_from_name(pkalg); in userauth_pubkey() 107 if (pktype == KEY_UNSPEC) { in userauth_pubkey() 118 if (key->type != pktype) { in userauth_pubkey() 120 "(received %d, expected %d)", key->type, pktype); in userauth_pubkey()
|
D | sshconnect2.c | 555 int pktype, sent = 0; in input_userauth_pk_ok() local 578 if ((pktype = key_type_from_name(pkalg)) == KEY_UNSPEC) { in input_userauth_pk_ok() 586 if (key->type != pktype) { in input_userauth_pk_ok() 589 key->type, pktype); in input_userauth_pk_ok()
|
/external/curl/lib/vtls/ |
D | openssl.c | 2455 int pktype; in get_cert_chain() local 2457 pktype = EVP_PKEY_id(pubkey); in get_cert_chain() 2459 pktype = pubkey->type; in get_cert_chain() 2461 switch(pktype) { in get_cert_chain()
|