[BACK]Return to authfile.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

File: [local] / src / usr.bin / ssh / authfile.h (download)

Revision 1.7, Tue Jun 26 06:32:48 2001 UTC (22 years, 11 months ago) by itojun
Branch: MAIN
Changes since 1.6: +6 -9 lines

prototype pedant.  not very creative...
- () -> (void)
- no variable names

/*
 * 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.7 2001/06/26 06:32:48 itojun Exp $ */

#ifndef AUTHFILE_H
#define AUTHFILE_H

int
key_save_private(Key *, const char *, const char *, const char *);

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

Key *
key_load_public_type(int, const char *, char **);

Key *
key_load_private(const char *, const char *, char **);

Key *
key_load_private_type(int, const char *, const char *, char **);

#endif