frexpl: Update autoconf test.
[gnulib.git] / lib / rijndael-alg-fst.h
index a1de60f..2cfe1fc 100644 (file)
@@ -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
 #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 */