Lines Matching defs:ca
113 /* Path to CA key when certifying keys. */
1061 * characters or a CA/revocation marker.
1107 /* Don't remove CA and revocation lines */
1111 * Hostname matches and has no CA/revoke
1126 l->linenum, l->marker == MRK_CA ? "CA" :
1565 fatal("Couldn't load CA public key \"%s\": %s",
1592 struct sshkey *ca, *public;
1621 if ((ca = load_pkcs11_key(tmp)) == NULL)
1624 ca = load_identity(tmp);
1670 if ((r = sshkey_from_private(ca,
1672 fatal("key_from_private (ca key): %s", ssh_err(r));
1674 if (sshkey_certify(public, ca) != 0)
1927 printf(" Signing CA: %s %s\n",
1986 const struct sshkey *ca, struct ssh_krl *krl)
2027 if (ca == NULL && !wild_ca) {
2029 "requires specification of a CA key");
2059 ca, serial, serial2) != 0) {
2064 if (ca == NULL && !wild_ca) {
2066 "requires specification of a CA key");
2070 if (ssh_krl_revoke_cert_by_key_id(krl, ca, cp) != 0)
2114 struct sshkey *ca = NULL;
2133 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
2134 fatal("Cannot load CA public key %s: %s",
2151 update_krl_from_file(pw, argv[i], wild_ca, ca, krl);
2165 if (ca != NULL)
2166 sshkey_free(ca);