Lines Matching defs:private
167 /* Decrypt the challenge using the private key. */
209 Key *public, *private;
251 * load the private key. Try first with empty passphrase; if it
255 private = public;
257 private = key_load_private_type(KEY_RSA1, authfile, "", NULL,
259 if (private == NULL && !options.batch_mode && perm_ok) {
265 private = key_load_private_type(KEY_RSA1,
274 if (private != NULL || quit)
282 if (private == NULL) {
300 respond_to_rsa_challenge(challenge, private->rsa);
302 /* Destroy the private key unless it in external hardware. */
303 if (!(private->flags & KEY_FLAG_EXT))
304 key_free(private);