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

Diff for /src/usr.bin/bdes/Attic/bdes.c between version 1.6 and 1.7

version 1.6, 2001/11/19 19:02:13 version 1.7, 2002/02/16 21:27:44
Line 94 
Line 94 
 #include <string.h>  #include <string.h>
   
 typedef char Desbuf[8];  typedef char Desbuf[8];
 int     tobinhexi __P((char, int));  int     tobinhexi(char, int);
 void    cvtkey __P((char *, char *));  void    cvtkey(char *, char *);
 int     setbits __P((char *, int));  int     setbits(char *, int);
 void    makekey __P((Desbuf));  void    makekey(Desbuf);
 void    ecbenc __P((void));  void    ecbenc(void);
 void    ecbdec __P((void));  void    ecbdec(void);
 void    cbcenc __P((void));  void    cbcenc(void);
 void    cbcdec __P((void));  void    cbcdec(void);
 void    cbcauth __P((void));  void    cbcauth(void);
 void    cfbenc __P((void));  void    cfbenc(void);
 void    cfbdec __P((void));  void    cfbdec(void);
 void    cfbaenc __P((void));  void    cfbaenc(void);
 void    cfbadec __P((void));  void    cfbadec(void);
 void    cfbauth __P((void));  void    cfbauth(void);
 void    ofbdec __P((void));  void    ofbdec(void);
 void    ofbenc __P((void));  void    ofbenc(void);
 void    usage __P((void));  void    usage(void);
   
 /*  /*
  * BSD and System V systems offer special library calls that do   * BSD and System V systems offer special library calls that do

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