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

Diff for /src/usr.bin/x99token/x99token.c between version 1.9 and 1.10

version 1.9, 2013/11/27 00:13:22 version 1.10, 2015/01/16 06:40:14
Line 7 
Line 7 
  *   *
  * Donated to the Public Domain by Paul Borman   * Donated to the Public Domain by Paul Borman
  */   */
 #include <sys/param.h>  
 #include <sys/stat.h>  #include <sys/stat.h>
   
 #include <ctype.h>  #include <ctype.h>
Line 18 
Line 18 
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
 #include <unistd.h>  #include <unistd.h>
   #include <limits.h>
 #include <openssl/des.h>  #include <openssl/des.h>
   
 #define KEYFILE         ".keyfile.des"  #define KEYFILE         ".keyfile.des"
Line 36 
Line 37 
         char buf[256];          char buf[256];
         DES_key_schedule ks;          DES_key_schedule ks;
         DES_cblock key;          DES_cblock key;
         char _keyfile[MAXPATHLEN];          char _keyfile[PATH_MAX];
         char *keyfile = 0;          char *keyfile = 0;
         FILE *fp;          FILE *fp;
         int init = 0;          int init = 0;

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10