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

Diff for /src/usr.bin/ssh/Attic/auth-rh-rsa.c between version 1.17 and 1.18

version 1.17, 2000/10/03 18:03:03 version 1.18, 2000/11/12 19:50:37
Line 53 
Line 53 
         debug("Rhosts RSA authentication: canonical host %.900s", canonical_hostname);          debug("Rhosts RSA authentication: canonical host %.900s", canonical_hostname);
   
         /* wrap the RSA key into a 'generic' key */          /* wrap the RSA key into a 'generic' key */
         client_key = key_new(KEY_RSA);          client_key = key_new(KEY_RSA1);
         BN_copy(client_key->rsa->e, client_host_key->e);          BN_copy(client_key->rsa->e, client_host_key->e);
         BN_copy(client_key->rsa->n, client_host_key->n);          BN_copy(client_key->rsa->n, client_host_key->n);
         found = key_new(KEY_RSA);          found = key_new(KEY_RSA1);
   
         /* Check if we know the host and its host key. */          /* Check if we know the host and its host key. */
         host_status = check_host_in_hostfile(SSH_SYSTEM_HOSTFILE, canonical_hostname,          host_status = check_host_in_hostfile(SSH_SYSTEM_HOSTFILE, canonical_hostname,

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18