[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.1

version 1.6, 2001/03/26 08:07:08 version 1.6.2.1, 2001/09/27 19:03:54
Line 15 
Line 15 
 #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.1