[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.6 and 1.7

version 1.6, 2001/07/25 11:59:35 version 1.7, 2001/07/26 20:04:27
Line 51 
Line 51 
 static int  static int
 sc_open(void)  sc_open(void)
 {  {
         u_char atr[256];  
         int sw;          int sw;
   
         if (sc_fd >= 0)          if (sc_fd >= 0)
Line 62 
Line 61 
                 error("sectok_open failed: %s", sectok_get_sw(sw));                  error("sectok_open failed: %s", sectok_get_sw(sw));
                 return -1;                  return -1;
         }          }
         if (sectok_reset(sc_fd, 0, atr, &sw) <= 0) {          if (sectok_reset(sc_fd, 0, NULL, &sw) <= 0) {
                 error("sectok_reset failed: %s", sectok_get_sw(sw));                  error("sectok_reset failed: %s", sectok_get_sw(sw));
                 sc_fd = -1;                  sc_fd = -1;
                 return sc_fd;                  return sc_fd;
         }          }
           if ((cla = cyberflex_inq_class(sc_fd)) < 0)
                   cla = 0;
   
         debug("sc_open ok %d", sc_fd);          debug("sc_open ok %d", sc_fd);
         return sc_fd;          return sc_fd;
Line 75 
Line 76 
 static int  static int
 sc_enable_applet(void)  sc_enable_applet(void)
 {  {
         u_char contID[2], aid[MAX_BUF_SIZE];          static u_char aid[] = {0xfc, 0x53, 0x73, 0x68, 0x2e, 0x62, 0x69, 0x6e};
         int i, len, sw, aid_len;          int sw = 0;
   
         len = sw = 0;          /* select applet id */
         contID[0] = 0x77;          sectok_apdu(sc_fd, cla, 0xa4, 0x04, 0, sizeof aid, aid, 0, NULL, &sw);
         contID[1] = 0x78;  
   
         if (sectok_selectfile(sc_fd, cla, root_fid, &sw) < 0) {  
                 error("sectok_selectfile root_fid failed: %s",  
                     sectok_get_sw(sw));  
                 sc_close();  
                 return -1;  
         }  
         if (sectok_selectfile(sc_fd, cla, contID, &sw) < 0) {  
                 error("sectok_selectfile failed: %s", sectok_get_sw(sw));  
                 sc_close();  
                 return -1;  
         }  
         /* send applet id */  
         for (i = 0; i < sizeof(aid); i++)  
                 aid[i] = 0x77;  
         aid_len = 5;  
         sectok_apdu(sc_fd, cla, 0xa4, 0x04, 0, aid_len, aid, 0, NULL, &sw);  
         if (!sectok_swOK(sw)) {          if (!sectok_swOK(sw)) {
                 error("sectok_apdu failed: %s", sectok_get_sw(sw));                  error("sectok_apdu failed: %s", sectok_get_sw(sw));
                 sc_close();                  sc_close();

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