X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Frijndael-alg-fst.h;h=2cfe1fcd8f55d3cc1aadfd7fb41e63164f0c2f25;hb=21c3d05ca705daa62ec4c7444e67af48ba757c18;hp=a1de60ff4e3d8b12df587d992b700e5b046a17d6;hpb=b1d63f6a62e094b90cd900923b5537ea985aba30;p=gnulib.git diff --git a/lib/rijndael-alg-fst.h b/lib/rijndael-alg-fst.h index a1de60ff4..2cfe1fcd8 100644 --- a/lib/rijndael-alg-fst.h +++ b/lib/rijndael-alg-fst.h @@ -1,5 +1,5 @@ -/* rijndael-alg-fst.c --- Rijndael cipher implementation. - * Copyright (C) 2005 Free Software Foundation, Inc. +/* rijndael-alg-fst.h --- Rijndael cipher implementation. + * Copyright (C) 2005, 2009-2011 Free Software Foundation, Inc. * * This file is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published @@ -56,12 +56,12 @@ #define RIJNDAEL_MAXNR 14 int rijndaelKeySetupEnc (uint32_t rk[ /*4*(Nr + 1) */ ], - const char cipherKey[], size_t keyBits); + const char cipherKey[], size_t keyBits); int rijndaelKeySetupDec (uint32_t rk[ /*4*(Nr + 1) */ ], - const char cipherKey[], size_t keyBits); + const char cipherKey[], size_t keyBits); void rijndaelEncrypt (const uint32_t rk[ /*4*(Nr + 1) */ ], size_t Nr, - const char pt[16], char ct[16]); + const char pt[16], char ct[16]); void rijndaelDecrypt (const uint32_t rk[ /*4*(Nr + 1) */ ], size_t Nr, - const char ct[16], char pt[16]); + const char ct[16], char pt[16]); #endif /* __RIJNDAEL_ALG_FST_H */