From ef3668b28473036ddb4eca904ed2e6c1403f9297 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se> Date: Sun, 17 Jun 2001 21:31:08 +0200 Subject: [PATCH] *** empty log message *** Rev: src/nettle/ChangeLog:1.10 Rev: src/nettle/aes.h:1.4 Rev: src/nettle/arcfour.h:1.3 Rev: src/nettle/blowfish.h:1.7 Rev: src/nettle/cast128.h:1.3 Rev: src/nettle/des.h:1.4 Rev: src/nettle/md5.h:1.3 Rev: src/nettle/memxor.h:1.2 Rev: src/nettle/serpent.h:1.5 Rev: src/nettle/sha1.h:1.3 Rev: src/nettle/twofish.h:1.4 --- ChangeLog | 4 ++++ aes.h | 2 +- arcfour.h | 2 +- blowfish.h | 2 +- cast128.h | 2 +- des.h | 2 +- md5.h | 2 +- memxor.h | 2 +- serpent.h | 2 +- sha1.h | 2 +- twofish.h | 2 +- 11 files changed, 14 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index 50c67aea..d281ffdb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/aes.h b/aes.h index e7298d09..398ac7e6 100644 --- a/aes.h +++ b/aes.h @@ -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 diff --git a/arcfour.h b/arcfour.h index 49219610..54aee479 100644 --- a/arcfour.h +++ b/arcfour.h @@ -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.*/ diff --git a/blowfish.h b/blowfish.h index eb346a77..72934da5 100644 --- a/blowfish.h +++ b/blowfish.h @@ -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 diff --git a/cast128.h b/cast128.h index 9475aea1..0d1e044e 100644 --- a/cast128.h +++ b/cast128.h @@ -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 diff --git a/des.h b/des.h index 9f7584d0..9c09a5dd 100644 --- a/des.h +++ b/des.h @@ -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 diff --git a/md5.h b/md5.h index c2d7e98c..b376f7db 100644 --- a/md5.h +++ b/md5.h @@ -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 diff --git a/memxor.h b/memxor.h index 16c2829b..25621b19 100644 --- a/memxor.h +++ b/memxor.h @@ -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); diff --git a/serpent.h b/serpent.h index 7a404626..ae8afeb7 100644 --- a/serpent.h +++ b/serpent.h @@ -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 diff --git a/sha1.h b/sha1.h index 65113563..ab1a88b3 100644 --- a/sha1.h +++ b/sha1.h @@ -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 diff --git a/twofish.h b/twofish.h index 217b9e30..a33554c5 100644 --- a/twofish.h +++ b/twofish.h @@ -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 -- GitLab