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

Diff for /src/usr.bin/ssh/ssh-agent.c between version 1.48 and 1.49

version 1.48, 2001/01/25 08:06:33 version 1.49, 2001/01/29 19:47:31
Line 194 
Line 194 
         private = lookup_private_key(key, NULL, 1);          private = lookup_private_key(key, NULL, 1);
         if (private != NULL) {          if (private != NULL) {
                 /* Decrypt the challenge using the private key. */                  /* Decrypt the challenge using the private key. */
                 rsa_private_decrypt(challenge, challenge, private->rsa);                  if (rsa_private_decrypt(challenge, challenge, private->rsa) <= 0)
                           goto failure;
   
                 /* The response is MD5 of decrypted challenge plus session id. */                  /* The response is MD5 of decrypted challenge plus session id. */
                 len = BN_num_bytes(challenge);                  len = BN_num_bytes(challenge);

Legend:
Removed from v.1.48  
changed lines
  Added in v.1.49