X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Frijndael-alg-fst.h;h=2cfe1fcd8f55d3cc1aadfd7fb41e63164f0c2f25;hb=620ece7758e453efebf7f52a1ab9fc1c49a5020c;hp=7d8e4f1a5229514ce6caa82b616bc8cf0d38feb5;hpb=31ddbf29cbded8047a9d9dd1d27ac881b390c5fc;p=gnulib.git diff --git a/lib/rijndael-alg-fst.h b/lib/rijndael-alg-fst.h index 7d8e4f1a5..2cfe1fcd8 100644 --- a/lib/rijndael-alg-fst.h +++ b/lib/rijndael-alg-fst.h @@ -1,5 +1,5 @@ /* rijndael-alg-fst.h --- Rijndael cipher implementation. - * Copyright (C) 2005 Free Software Foundation, Inc. + * 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 */