diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | aes.h | 2 | ||||
-rw-r--r-- | arcfour.h | 2 | ||||
-rw-r--r-- | blowfish.h | 2 | ||||
-rw-r--r-- | cast128.h | 2 | ||||
-rw-r--r-- | des.h | 2 | ||||
-rw-r--r-- | md5.h | 2 | ||||
-rw-r--r-- | memxor.h | 2 | ||||
-rw-r--r-- | serpent.h | 2 | ||||
-rw-r--r-- | sha1.h | 2 | ||||
-rw-r--r-- | twofish.h | 2 |
11 files changed, 14 insertions, 10 deletions
@@ -1,5 +1,9 @@ 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 @@ -26,7 +26,7 @@ #ifndef NETTLE_AES_H_INCLUDED #define NETTLE_AES_H_INCLUDED -#include <stdint.h> +#include <inttypes.h> #define AES_BLOCK_SIZE 16 @@ -26,7 +26,7 @@ #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.*/ @@ -26,7 +26,7 @@ #ifndef NETTLE_BLOWFISH_H_INCLUDED #define NETTLE_BLOWFISH_H_INCLUDED -#include <stdint.h> +#include <inttypes.h> #define BLOWFISH_BLOCK_SIZE 8 @@ -32,7 +32,7 @@ #ifndef NETTLE_CAST128_H_INCLUDED #define NETTLE_CAST128_H_INCLUDED -#include <stdint.h> +#include <inttypes.h> #define CAST128_BLOCK_SIZE 8 @@ -35,7 +35,7 @@ #ifndef NETTLE_DES_H #define NETTLE_DES_H -#include <stdint.h> +#include <inttypes.h> #define DES_KEY_SIZE 8 #define DES_BLOCK_SIZE 8 @@ -26,7 +26,7 @@ #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 @@ -5,7 +5,7 @@ #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); @@ -31,7 +31,7 @@ #ifndef NETTLE_SERPENT_H_INCLUDED #define NETTLE_SERPENT_H_INCLUDED -#include <stdint.h> +#include <inttypes.h> #define SERPENT_BLOCK_SIZE 16 @@ -26,7 +26,7 @@ #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 @@ -32,7 +32,7 @@ #ifndef NETTLE_TWOFISH_H_INCLUDED #define NETTLE_TWOFISH_H_INCLUDED -#include <stdint.h> +#include <inttypes.h> #define TWOFISH_BLOCK_SIZE 16 |