[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.5.2.3 and 1.6

version 1.5.2.3, 2002/03/08 17:04:42 version 1.6, 2001/03/26 08:07:08
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 12 
Line 10 
  * 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      key_save_private(Key *, const char *, const char *, const char *);  int
 Key     *key_load_public(const char *, char **);  key_save_private(Key *key, const char *filename, const char *passphrase,
 Key     *key_load_public_type(int, const char *, char **);      const char *comment);
 Key     *key_load_private(const char *, const char *, char **);  
 Key     *key_load_private_type(int, const char *, const char *, char **);  Key *
   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.5.2.3  
changed lines
  Added in v.1.6