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

Diff for /src/usr.bin/ssh/ssh-pkcs11-client.c between version 1.6 and 1.7

version 1.6, 2015/12/11 00:20:04 version 1.7, 2017/05/30 08:52:19
Line 100 
Line 100 
 pkcs11_rsa_private_encrypt(int flen, const u_char *from, u_char *to, RSA *rsa,  pkcs11_rsa_private_encrypt(int flen, const u_char *from, u_char *to, RSA *rsa,
     int padding)      int padding)
 {  {
         Key key;          struct sshkey key;      /* XXX */
         u_char *blob, *signature = NULL;          u_char *blob, *signature = NULL;
         u_int blen, slen = 0;          u_int blen, slen = 0;
         int ret = -1;          int ret = -1;
Line 180 
Line 180 
 int  int
 pkcs11_add_provider(char *name, char *pin, Key ***keysp)  pkcs11_add_provider(char *name, char *pin, Key ***keysp)
 {  {
         Key *k;          struct sshkey *k;
         int i, nkeys;          int i, nkeys;
         u_char *blob;          u_char *blob;
         u_int blen;          u_int blen;

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7