2001-06-17 Niels Möller <nisse@cuckoo.hack.org>
+ * Use <inttypes.h>, not <stdint.h>.
+
+ * blowfish.h (BLOWFISH_MAX_KEY_SIZE): Fixed, should be 56.
+
* Fixed copyright notices.
* Makefile.am (libnettle_a_SOURCES): Added desinfo.h and
#ifndef NETTLE_AES_H_INCLUDED
#define NETTLE_AES_H_INCLUDED
-#include <stdint.h>
+#include <inttypes.h>
#define AES_BLOCK_SIZE 16
#ifndef NETTLE_ARCFOUR_H_INCLUDED
#define NETTLE_ARCFOUR_H_INCLUDED
-#include <stdint.h>
+#include <inttypes.h>
/* Minimum and maximum keysizes, and a reasonable default. In
* octets.*/
#ifndef NETTLE_BLOWFISH_H_INCLUDED
#define NETTLE_BLOWFISH_H_INCLUDED
-#include <stdint.h>
+#include <inttypes.h>
#define BLOWFISH_BLOCK_SIZE 8
#ifndef NETTLE_CAST128_H_INCLUDED
#define NETTLE_CAST128_H_INCLUDED
-#include <stdint.h>
+#include <inttypes.h>
#define CAST128_BLOCK_SIZE 8
#ifndef NETTLE_DES_H
#define NETTLE_DES_H
-#include <stdint.h>
+#include <inttypes.h>
#define DES_KEY_SIZE 8
#define DES_BLOCK_SIZE 8
#ifndef NETTLE_MD5_H_INCLUDED
#define NETTLE_MD5_H_INCLUDED
-#include <stdint.h>
+#include <inttypes.h>
#define MD5_DIGEST_SIZE 16
#define MD5_DATA_SIZE 64
#ifndef NETTLE_MEMXOR_H_INCLUDED
#define NETTLE_MEMXOR_H_INCLUDED
-#include <stdint.h>
+#include <inttypes.h>
#include <stdlib.h>
uint8_t *memxor(uint8_t *dst, const uint8_t *src, size_t n);
#ifndef NETTLE_SERPENT_H_INCLUDED
#define NETTLE_SERPENT_H_INCLUDED
-#include <stdint.h>
+#include <inttypes.h>
#define SERPENT_BLOCK_SIZE 16
#ifndef NETTLE_SHA1_H_INCLUDED
#define NETTLE_SHA1_H_INCLUDED
-#include <stdint.h>
+#include <inttypes.h>
#define SHA1_DIGEST_SIZE 20
#define SHA1_DATA_SIZE 64
#ifndef NETTLE_TWOFISH_H_INCLUDED
#define NETTLE_TWOFISH_H_INCLUDED
-#include <stdint.h>
+#include <inttypes.h>
#define TWOFISH_BLOCK_SIZE 16