Lines Matching refs:found
174 u_int i, found = 0; in auth_check_principals_line() local
210 found = 1; in auth_check_principals_line()
212 if (found && authoptsp != NULL) { in auth_check_principals_line()
217 return found ? 0 : -1; in auth_check_principals_line()
268 struct sshkey *found = NULL; in auth_check_authkey_line() local
277 if ((found = sshkey_new(want_keytype)) == NULL) { in auth_check_authkey_line()
284 if (sshkey_read(found, &cp) != 0) { in auth_check_authkey_line()
293 if (sshkey_read(found, &cp) != 0) { in auth_check_authkey_line()
308 if (!sshkey_equal(found, key->cert->signature_key) || in auth_check_authkey_line()
313 if (!sshkey_equal(found, key) || keyopts->cert_authority) in auth_check_authkey_line()
318 if ((fp = sshkey_fingerprint(found, in auth_check_authkey_line()
323 sshkey_is_cert(key) ? "CA" : "key", sshkey_type(found), fp); in auth_check_authkey_line()
333 sshkey_type(found), fp, loc); in auth_check_authkey_line()
375 sshkey_type(found), fp, loc); in auth_check_authkey_line()
396 sshkey_free(found); in auth_check_authkey_line()