Home | History | Annotate | Download | only in openssh

Lines Matching defs:private

139 		fatal("Certificate %s does not match private key %s",
184 struct sshkey *private, *cert;
221 &private, &comment)) != 0 && r != SSH_ERR_KEY_WRONG_PASSPHRASE) {
227 if (private == NULL && pass != NULL) {
229 &private, &comment)) != 0 &&
238 if (private == NULL) {
248 filename, &private, NULL)) == 0)
268 if ((r = ssh_add_identity_constrained(agent_fd, private, comment,
296 if (!sshkey_equal_public(cert, private)) {
297 error("Certificate %s does not match private key %s",
303 /* Graft with private bits */
304 if ((r = sshkey_to_certified(private,
310 if ((r = sshkey_cert_copy(cert, private)) != 0) {
317 if ((r = ssh_add_identity_constrained(agent_fd, private, comment,
320 private->cert->key_id, ssh_err(r));
324 private->cert->key_id);
332 sshkey_free(private);