Main Page | Namespace List | Class List | Directories | File List | Class Members | File Members

authfile.h

Go to the documentation of this file.
00001 /*      $OpenBSD: authfile.h,v 1.10 2002/05/23 19:24:30 markus Exp $    */
00002 
00003 /*
00004  * Author: Tatu Ylonen <ylo@cs.hut.fi>
00005  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
00006  *                    All rights reserved
00007  *
00008  * As far as I am concerned, the code I have written for this software
00009  * can be used freely for any purpose.  Any derived versions of this
00010  * software must be clearly marked as such, and if the derived work is
00011  * incompatible with the protocol description in the RFC file, it must be
00012  * called by a name other than "ssh" or "Secure Shell".
00013  */
00014 
00015 #ifndef AUTHFILE_H
00016 #define AUTHFILE_H
00017 
00018 int      key_save_private(Key *, const char *, const char *, const char *);
00019 Key     *key_load_public(const char *, char **);
00020 Key     *key_load_public_type(int, const char *, char **);
00021 Key     *key_load_private(const char *, const char *, char **);
00022 Key     *key_load_private_type(int, const char *, const char *, char **);
00023 Key     *key_load_private_pem(int, int, const char *, char **);
00024 
00025 #endif

© sourcejam.com 2005-2008