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

Diff for /src/usr.bin/ssh/Attic/scard.c between version 1.19 and 1.20

version 1.19, 2002/03/21 16:54:53 version 1.20, 2002/03/21 16:57:15
Line 189 
Line 189 
 /* private key operations */  /* private key operations */
   
 static int  static int
 sc_private_decrypt(int flen, const u_char *from, u_char *to, RSA *rsa,  sc_private_decrypt(int flen, u_char *from, u_char *to, RSA *rsa,
     int padding)      int padding)
 {  {
         u_char *padded = NULL;          u_char *padded = NULL;
Line 233 
Line 233 
 }  }
   
 static int  static int
 sc_private_encrypt(int flen, const u_char *from, u_char *to, RSA *rsa,  sc_private_encrypt(int flen, u_char *from, u_char *to, RSA *rsa,
     int padding)      int padding)
 {  {
         u_char *padded = NULL;          u_char *padded = NULL;

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20