X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Frijndael-alg-fst.h;h=4d70f2724882889aebd14be263d6c1dc53757e7d;hb=05ed80b6a55ce3f831fc73f15df68b5ca2856ccb;hp=7d8e4f1a5229514ce6caa82b616bc8cf0d38feb5;hpb=31ddbf29cbded8047a9d9dd1d27ac881b390c5fc;p=gnulib.git diff --git a/lib/rijndael-alg-fst.h b/lib/rijndael-alg-fst.h index 7d8e4f1a5..4d70f2724 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-2013 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 @@ -12,9 +12,7 @@ * General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this file; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - * 02110-1301, USA. + * along with this file; if not, see . * */ @@ -56,12 +54,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 */