X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/d3bfe6ecf7fb2c2c6b993a0ade6dfa080cb4e2d2..8404fd750e8d1a635ccb3895e4f0e155e5f5e3cf:/cast-s.c diff --git a/cast-s.c b/cast-s.c index 040d538..2bd3e28 100644 --- a/cast-s.c +++ b/cast-s.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: cast-s.c,v 1.1 2000/06/17 10:48:52 mdw Exp $ + * $Id: cast-s.c,v 1.2 2004/04/02 01:03:49 mdw Exp $ * * Basic S-boxes for CAST-128 and CAST-256 * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: cast-s.c,v $ + * Revision 1.2 2004/04/02 01:03:49 mdw + * Miscellaneous constification. + * * Revision 1.1 2000/06/17 10:48:52 mdw * CAST S-boxes. * @@ -44,6 +47,6 @@ /*----- Global variables --------------------------------------------------*/ -uint32 cast_s[4][256] = CAST_S; +const uint32 cast_s[4][256] = CAST_S; /*----- That's all, folks -------------------------------------------------*/