X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/5d4fee2a9d2ecf4d2566c0deca27e1878bf2380f..4e66da02f19648ee1be862e67ba1d1fc5549fb7f:/gfshare.c diff --git a/gfshare.c b/gfshare.c index 09d3e89..841e556 100644 --- a/gfshare.c +++ b/gfshare.c @@ -1,8 +1,8 @@ /* -*-c-*- * - * $Id: gfshare.c,v 1.6 2000/12/06 20:30:10 mdw Exp $ + * $Id: gfshare.c,v 1.8 2004/04/02 01:03:49 mdw Exp $ * - * Secret sharing over %$\gf(2^8)$% + * Secret sharing over %$\gf{2^8}$% * * (c) 2000 Straylight/Edgeware */ @@ -30,6 +30,12 @@ /*----- Revision history --------------------------------------------------* * * $Log: gfshare.c,v $ + * Revision 1.8 2004/04/02 01:03:49 mdw + * Miscellaneous constification. + * + * Revision 1.7 2001/06/16 23:42:17 mdw + * Typesetting fixes. + * * Revision 1.6 2000/12/06 20:30:10 mdw * Change secret sharing interface: present the secret at share * construction time. @@ -70,7 +76,7 @@ /*----- Static variables --------------------------------------------------*/ -static octet gflog[] = GFSHARE_LOG, gfexp[] = GFSHARE_EXP; +static const octet gflog[] = GFSHARE_LOG, gfexp[] = GFSHARE_EXP; /*----- Main code ---------------------------------------------------------*/