[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.2 and 1.3

version 1.2, 1999/09/29 21:14:15 version 1.3, 1999/09/30 17:08:51
Line 22 
Line 22 
 #include "packet.h"  #include "packet.h"
 #include "xmalloc.h"  #include "xmalloc.h"
 #include "ssh.h"  #include "ssh.h"
 #include "ssh_md5.h"  
 #include "mpaux.h"  #include "mpaux.h"
 #include "uidswap.h"  #include "uidswap.h"
   
 #include <ssl/rsa.h>  #include <ssl/rsa.h>
   #include <md5.h>
   
 /* Flags that may be set in authorized_keys options. */  /* Flags that may be set in authorized_keys options. */
 extern int no_port_forwarding_flag;  extern int no_port_forwarding_flag;
Line 60 
Line 60 
   RSA *pk;    RSA *pk;
   BN_CTX *ctx = BN_CTX_new();    BN_CTX *ctx = BN_CTX_new();
   unsigned char buf[32], mdbuf[16], response[16];    unsigned char buf[32], mdbuf[16], response[16];
   struct MD5Context md;    MD5_CTX md;
   unsigned int i;    unsigned int i;
   int plen, len;    int plen, len;
   

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3