X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/680bedf81bb4e939d3137ef0a4d9ca25a4638355..02dfbd5b7af7816959dbd39c1fe628451204e35f:/des-mktab.c diff --git a/des-mktab.c b/des-mktab.c index 1a984d1..e41e372 100644 --- a/des-mktab.c +++ b/des-mktab.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: des-mktab.c,v 1.3 2000/06/17 10:52:14 mdw Exp $ + * $Id: des-mktab.c,v 1.5 2004/04/08 01:36:15 mdw Exp $ * * Build combined S-P tables for DES * @@ -27,20 +27,6 @@ * MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: des-mktab.c,v $ - * Revision 1.3 2000/06/17 10:52:14 mdw - * Change name for S-box header file. - * - * Revision 1.2 1999/12/22 16:02:30 mdw - * Output the table with the correct new header guard names. - * - * Revision 1.1 1999/09/03 08:41:11 mdw - * Initial import. - * - */ - /*----- Header files ------------------------------------------------------*/ #include @@ -54,7 +40,7 @@ /* --- S boxes --- */ -static char s[8][4][16] = { +static const char s[8][4][16] = { /* --- S1 --- */ @@ -136,7 +122,7 @@ static char p[32] = { * unique. */ -static int unique(char *t, int base, int sz, const char *name, ...) +static int unique(const char *t, int base, int sz, const char *name, ...) { char u[32]; char nbuf[128];