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

Diff for /src/usr.bin/ssh/authfile.h between version 1.6 and 1.6.2.2

version 1.6, 2001/03/26 08:07:08 version 1.6.2.2, 2002/03/09 00:20:44
Line 1 
Line 1 
   /*      $OpenBSD$       */
   
 /*  /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>   * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland   * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
Line 10 
Line 12 
  * called by a name other than "ssh" or "Secure Shell".   * called by a name other than "ssh" or "Secure Shell".
  */   */
   
 /* $OpenBSD$ */  
   
 #ifndef AUTHFILE_H  #ifndef AUTHFILE_H
 #define AUTHFILE_H  #define AUTHFILE_H
   
 int  int      key_save_private(Key *, const char *, const char *, const char *);
 key_save_private(Key *key, const char *filename, const char *passphrase,  Key     *key_load_public(const char *, char **);
     const char *comment);  Key     *key_load_public_type(int, const char *, char **);
   Key     *key_load_private(const char *, const char *, char **);
 Key *  Key     *key_load_private_type(int, const char *, const char *, char **);
 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  #endif

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.6.2.2