Home | History | Annotate | Download | only in openssh

Lines Matching defs:ca

103 /* Path to CA key when certifying keys. */
942 printhost(FILE *f, const char *name, Key *public, int ca, int hash)
962 fprintf(f, "%s%s%s ", ca ? CA_MARKER : "", ca ? " " : "", name);
977 int ca;
1033 /* Check whether this is a CA key */
1037 ca = 1;
1040 ca = 0;
1083 ca ? " (CA key)" : "");
1084 printhost(out, cp, pub, ca, 0);
1086 if (delete_host && !c && !ca)
1087 printhost(out, cp, pub, ca, 0);
1089 printhost(out, cp, pub, ca, 0);
1098 ca ? " (CA key)" : "");
1100 ca, hash_hosts && !ca);
1102 if (delete_host && !c && !ca)
1103 printhost(out, cp, pub, ca, 0);
1108 if (ca) {
1110 "ignoring CA key for host: "
1112 printhost(out, cp2, pub, ca, 0);
1119 printhost(out, cp2, pub, ca, 0);
1121 printhost(out, cp2, pub, ca, 1);
1481 fatal("Couldn't load CA public key \"%s\"", path);
1507 Key *ca, *public;
1534 if ((ca = load_pkcs11_key(tmp)) == NULL)
1536 } else if ((ca = load_identity(tmp)) == NULL)
1537 fatal("Couldn't load CA key \"%s\"", tmp);
1581 public->cert->signature_key = key_from_private(ca);
1583 if (key_certify(public, ca) != 0)
1827 printf(" Signing CA: %s %s\n",
1900 fprintf(stderr, " -s ca_key Certify keys with CA key.\n");