Lines Matching refs:ca_used
927 struct sshkey *key = NULL, **ca_used = NULL, **tmp_ca_used; in ssh_krl_from_blob() local
1021 if (sshkey_equal(ca_used[i], key)) { in ssh_krl_from_blob()
1029 tmp_ca_used = reallocarray(ca_used, nca_used + 1, in ssh_krl_from_blob()
1030 sizeof(*ca_used)); in ssh_krl_from_blob()
1035 ca_used = tmp_ca_used; in ssh_krl_from_blob()
1036 ca_used[nca_used++] = key; in ssh_krl_from_blob()
1112 if (ssh_krl_check_key(krl, ca_used[i]) == 0) in ssh_krl_from_blob()
1115 sshkey_free(ca_used[i]); in ssh_krl_from_blob()
1116 ca_used[i] = NULL; in ssh_krl_from_blob()
1130 if (ca_used[j] == NULL) in ssh_krl_from_blob()
1132 if (sshkey_equal(ca_used[j], sign_ca_keys[i])) { in ssh_krl_from_blob()
1151 sshkey_free(ca_used[i]); in ssh_krl_from_blob()
1152 free(ca_used); in ssh_krl_from_blob()