/* $OpenBSD: authfile.h,v 1.16 2011/05/04 21:15:29 djm Exp $ *//* * 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". */#ifndef AUTHFILE_H#define AUTHFILE_Hintkey_save_private(Key*,constchar*,constchar*,constchar*);intkey_load_file(int,constchar*,Buffer*);Key*key_load_cert(constchar*);Key*key_load_public(constchar*,char**);Key*key_load_public_type(int,constchar*,char**);Key*key_parse_private(Buffer*,constchar*,constchar*,char**);Key*key_load_private(constchar*,constchar*,char**);Key*key_load_private_cert(int,constchar*,constchar*,int*);Key*key_load_private_type(int,constchar*,constchar*,char**,int*);Key*key_load_private_pem(int,int,constchar*,char**);intkey_perm_ok(int,constchar*);intkey_in_file(Key*,constchar*,int);#endif