summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cipher/ChangeLog12
-rw-r--r--cipher/ac.c1
-rw-r--r--cipher/blowfish.c1
-rw-r--r--cipher/cipher.c1
-rw-r--r--cipher/crc.c2
-rw-r--r--cipher/md4.c2
-rw-r--r--cipher/md5.c2
-rw-r--r--cipher/rmd160.c2
-rw-r--r--cipher/rndegd.c1
-rw-r--r--cipher/rndlinux.c1
-rw-r--r--cipher/rndunix.c1
-rw-r--r--cipher/sha1.c2
-rw-r--r--cipher/sha256.c2
-rw-r--r--cipher/tiger.c2
14 files changed, 19 insertions, 13 deletions
diff --git a/cipher/ChangeLog b/cipher/ChangeLog
index 8f11f61c..f2b07faf 100644
--- a/cipher/ChangeLog
+++ b/cipher/ChangeLog
@@ -1,5 +1,17 @@
2004-08-23 Moritz Schulte <moritz@g10code.com>
+ * ac.c: Do not include <assert.h>.
+ * rndegd.c: Likewise.
+ * sha1.c: Likewise.
+ * rndunix.c: Likewise.
+ * rndlinux.c: Likewise.
+ * rmd160.c: Likewise.
+ * md5.c: Likewise.
+ * md4.c: Likewise.
+ * cipher.c: Likewise.
+ * crc.c: Likewise.
+ * blowfish.c: Likewise.
+
* pubkey.c (dummy_generate, dummy_check_secret_key)
(dummy_encrypt, dummy_decrypt, dummy_sign, dummy_verify): Return
err code GPG_ERR_NOT_IMPLEMENTED instead of aborting through
diff --git a/cipher/ac.c b/cipher/ac.c
index c33e2217..617869d6 100644
--- a/cipher/ac.c
+++ b/cipher/ac.c
@@ -19,7 +19,6 @@
*/
#include <config.h>
-#include <assert.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
diff --git a/cipher/blowfish.c b/cipher/blowfish.c
index 66b2e8e0..da9d0744 100644
--- a/cipher/blowfish.c
+++ b/cipher/blowfish.c
@@ -33,7 +33,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <assert.h>
#include "types.h"
#include "g10lib.h"
#include "cipher.h"
diff --git a/cipher/cipher.c b/cipher/cipher.c
index 78ea9407..c1af9439 100644
--- a/cipher/cipher.c
+++ b/cipher/cipher.c
@@ -23,7 +23,6 @@
#include <stdlib.h>
#include <string.h>
#include <errno.h>
-#include <assert.h>
#include "g10lib.h"
#include "cipher.h"
diff --git a/cipher/crc.c b/cipher/crc.c
index 3d16a107..098237c0 100644
--- a/cipher/crc.c
+++ b/cipher/crc.c
@@ -23,7 +23,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <assert.h>
+
#include "g10lib.h"
#include "memory.h"
#include "cipher.h"
diff --git a/cipher/md4.c b/cipher/md4.c
index 0d0a5592..59953be4 100644
--- a/cipher/md4.c
+++ b/cipher/md4.c
@@ -51,7 +51,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <assert.h>
+
#include "g10lib.h"
#include "memory.h"
#include "cipher.h"
diff --git a/cipher/md5.c b/cipher/md5.c
index ec10b4de..c79bc167 100644
--- a/cipher/md5.c
+++ b/cipher/md5.c
@@ -35,7 +35,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <assert.h>
+
#include "g10lib.h"
#include "memory.h"
#include "cipher.h"
diff --git a/cipher/rmd160.c b/cipher/rmd160.c
index f450f2b8..8d0c4ae5 100644
--- a/cipher/rmd160.c
+++ b/cipher/rmd160.c
@@ -22,7 +22,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <assert.h>
+
#include "g10lib.h"
#include "memory.h"
#include "rmd.h"
diff --git a/cipher/rndegd.c b/cipher/rndegd.c
index 29b48e8c..791b909d 100644
--- a/cipher/rndegd.c
+++ b/cipher/rndegd.c
@@ -21,7 +21,6 @@
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
-#include <assert.h>
#include <errno.h>
#include <sys/time.h>
#include <sys/stat.h>
diff --git a/cipher/rndlinux.c b/cipher/rndlinux.c
index fc608bcc..d87cd8bd 100644
--- a/cipher/rndlinux.c
+++ b/cipher/rndlinux.c
@@ -22,7 +22,6 @@
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
-#include <assert.h>
#include <errno.h>
#include <sys/time.h>
#include <sys/types.h>
diff --git a/cipher/rndunix.c b/cipher/rndunix.c
index 3ebb8237..7964f3f2 100644
--- a/cipher/rndunix.c
+++ b/cipher/rndunix.c
@@ -53,7 +53,6 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
-#include <assert.h>
/* OS-specific includes */
diff --git a/cipher/sha1.c b/cipher/sha1.c
index 1f314435..7f1e38b8 100644
--- a/cipher/sha1.c
+++ b/cipher/sha1.c
@@ -33,7 +33,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <assert.h>
+
#include "g10lib.h"
#include "memory.h"
#include "bithelp.h"
diff --git a/cipher/sha256.c b/cipher/sha256.c
index 712c4e0d..2391a5b5 100644
--- a/cipher/sha256.c
+++ b/cipher/sha256.c
@@ -37,7 +37,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <assert.h>
+
#include "g10lib.h"
#include "memory.h"
#include "bithelp.h"
diff --git a/cipher/tiger.c b/cipher/tiger.c
index a92e812a..1a811bc4 100644
--- a/cipher/tiger.c
+++ b/cipher/tiger.c
@@ -22,7 +22,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <assert.h>
+
#include "g10lib.h"
#include "memory.h"
#include "cipher.h"