[BACK]Return to auth-rsa.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Attic/auth-rsa.c between version 1.7 and 1.8

version 1.7, 1999/11/02 19:42:34 version 1.8, 1999/11/11 23:36:52
Line 24 
Line 24 
 #include "ssh.h"  #include "ssh.h"
 #include "mpaux.h"  #include "mpaux.h"
 #include "uidswap.h"  #include "uidswap.h"
   #include "servconf.h"
   
 #include <ssl/rsa.h>  #include <ssl/rsa.h>
 #include <ssl/md5.h>  #include <ssl/md5.h>
Line 128 
Line 129 
    successful.  This may exit if there is a serious protocol violation. */     successful.  This may exit if there is a serious protocol violation. */
   
 int  int
 auth_rsa(struct passwd *pw, BIGNUM *client_n, int strict_modes)  auth_rsa(struct passwd *pw, BIGNUM *client_n)
 {  {
     extern ServerOptions options;
   char line[8192];    char line[8192];
   int authenticated;    int authenticated;
   unsigned int bits;    unsigned int bits;
Line 164 
Line 166 
       return 0;        return 0;
     }      }
   
   if (strict_modes) {    if (options.strict_modes) {
     int fail=0;      int fail=0;
     char buf[1024];      char buf[1024];
     /* Check open file in order to avoid open/stat races */      /* Check open file in order to avoid open/stat races */

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8