summaryrefslogtreecommitdiffstats
path: root/authfile.h
blob: da90cd91364b4c0470d340e0528180287b4a324c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 * Author: Tatu Ylonen <ylo@cs.hut.fi>
 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
 *                    All rights reserved
 *
 * As far as I am concerned, the code I have written for this software
 * can be used freely for any purpose.  Any derived versions of this
 * software must be clearly marked as such, and if the derived work is
 * incompatible with the protocol description in the RFC file, it must be
 * called by a name other than "ssh" or "Secure Shell".
 */

/* $OpenBSD: authfile.h,v 1.6 2001/03/26 08:07:08 markus Exp $ */

#ifndef AUTHFILE_H
#define AUTHFILE_H

int
key_save_private(Key *key, const char *filename, const char *passphrase,
    const char *comment);

Key *
key_load_public(const char *filename, char **commentp);

Key *
key_load_public_type(int type, const char *filename, char **commentp);

Key *
key_load_private(const char *filename, const char *passphrase,
    char **commentp);

Key *
key_load_private_type(int type, const char *filename, const char *passphrase,
    char **commentp);

#endif