Lines Matching defs:private
179 /* Decrypt the challenge using the private key. */
223 Key *public, *private;
265 * load the private key. Try first with empty passphrase; if it
269 private = public;
271 private = key_load_private_type(KEY_RSA1, authfile, "", NULL,
273 if (private == NULL && !options.batch_mode && perm_ok) {
279 private = key_load_private_type(KEY_RSA1,
288 if (private != NULL || quit)
296 if (private == NULL) {
314 respond_to_rsa_challenge(challenge, private->rsa);
316 /* Destroy the private key unless it in external hardware. */
317 if (!(private->flags & SSHKEY_FLAG_EXT))
318 key_free(private);