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

Diff for /src/usr.bin/ssh/Attic/auth1.c between version 1.27 and 1.28

version 1.27, 2001/12/19 07:18:56 version 1.28, 2001/12/25 18:53:00
Line 227 
Line 227 
                         }                          }
                         /* RSA authentication requested. */                          /* RSA authentication requested. */
                         n = BN_new();                          n = BN_new();
                           if (n == NULL)
                                   fatal("BN_new failed");
                         packet_get_bignum(n, &nlen);                          packet_get_bignum(n, &nlen);
                         packet_integrity_check(plen, nlen, type);                          packet_integrity_check(plen, nlen, type);
                         authenticated = auth_rsa(pw, n);                          authenticated = auth_rsa(pw, n);

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28