Home | History | Annotate | Download | only in openssh

Lines Matching defs:keys

103 /* Path to CA key when certifying keys. */
115 /* Comma-separated list of principal names for certifying keys */
183 fatal("DSA keys must be 1024 bits");
349 fprintf(stderr, "version 1 keys are not supported\n");
721 Key **keys = NULL;
725 nkeys = pkcs11_add_provider(pkcs11provider, NULL, &keys);
729 key_write(keys[i], stdout);
730 key_free(keys[i]);
733 xfree(keys);
883 printf("%s: generating new host keys: ", __progname);
1327 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
1477 Key **keys = NULL, *public, *private = NULL;
1483 nkeys = pkcs11_add_provider(pkcs11provider, identity_passphrase, &keys);
1484 debug3("%s: %d keys", __func__, nkeys);
1488 if (key_equal_public(public, keys[i])) {
1489 private = keys[i];
1492 key_free(keys[i]);
1494 xfree(keys);
1510 int v00 = 0; /* legacy keys */
1869 fprintf(stderr, " -A Generate non-existent host keys for all key types.\n");
1900 fprintf(stderr, " -s ca_key Certify keys with CA key.\n");
2188 fatal("no keys found.");