X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/eb31b00e4098ffb93eaf574f70cdd108b6610080..4e66da02f19648ee1be862e67ba1d1fc5549fb7f:/desx.c diff --git a/desx.c b/desx.c index 2d325b4..060815d 100644 --- a/desx.c +++ b/desx.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: desx.c,v 1.1 2001/04/03 19:36:50 mdw Exp $ + * $Id: desx.c,v 1.2 2004/04/02 01:03:49 mdw Exp $ * * Implementation of DESX * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: desx.c,v $ + * Revision 1.2 2004/04/02 01:03:49 mdw + * Miscellaneous constification. + * * Revision 1.1 2001/04/03 19:36:50 mdw * New block cipher DESX added. * @@ -53,7 +56,7 @@ /*----- Tables ------------------------------------------------------------*/ -static octet s[256] = DESX_S; +static const octet s[256] = DESX_S; /*----- Global variables --------------------------------------------------*/