From: Simon Josefsson Date: Sun, 1 Apr 2007 08:38:41 +0000 (+0000) Subject: Move crypto modules to crypto/. X-Git-Tag: cvs-readonly~611 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=0527d3651d8b32bc93e0250d9181b9d74ab5f5b2;p=gnulib.git Move crypto modules to crypto/. --- diff --git a/ChangeLog b/ChangeLog index d469ba8fe..601202776 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,50 @@ +2007-04-01 Simon Josefsson + + * modules/crypto/arcfour: Moved from ../. + * modules/crypto/arcfour-tests: Moved from ../. + * modules/crypto/arctwo: Moved from ../. + * modules/crypto/arctwo-tests: Moved from ../. + * modules/crypto/des: Moved from ../. + * modules/crypto/des-tests: Moved from ../. + * modules/crypto/gc-arcfour: Moved from ../. + * modules/crypto/gc-arcfour-tests: Moved from ../. + * modules/crypto/gc-arctwo: Moved from ../. + * modules/crypto/gc-arctwo-tests: Moved from ../. + * modules/crypto/gc-des: Moved from ../. + * modules/crypto/gc-des-tests: Moved from ../. + * modules/crypto/gc-hmac-md5: Moved from ../. + * modules/crypto/gc-hmac-md5-tests: Moved from ../. + * modules/crypto/gc-hmac-sha1: Moved from ../. + * modules/crypto/gc-hmac-sha1-tests: Moved from ../. + * modules/crypto/gc-md2: Moved from ../. + * modules/crypto/gc-md2-tests: Moved from ../. + * modules/crypto/gc-md4: Moved from ../. + * modules/crypto/gc-md4-tests: Moved from ../. + * modules/crypto/gc-md5: Moved from ../. + * modules/crypto/gc-md5-tests: Moved from ../. + * modules/crypto/gc-pbkdf2-sha1: Moved from ../. + * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../. + * modules/crypto/gc-random: Moved from ../. + * modules/crypto/gc-rijndael: Moved from ../. + * modules/crypto/gc-rijndael-tests: Moved from ../. + * modules/crypto/gc-sha1: Moved from ../. + * modules/crypto/gc-sha1-tests: Moved from ../. + * modules/crypto/gc-tests: Moved from ../. + * modules/crypto/hmac-md5: Moved from ../. + * modules/crypto/hmac-md5-tests: Moved from ../. + * modules/crypto/hmac-sha1: Moved from ../. + * modules/crypto/hmac-sha1-tests: Moved from ../. + * modules/crypto/md2: Moved from ../. + * modules/crypto/md2-tests: Moved from ../. + * modules/crypto/md4: Moved from ../. + * modules/crypto/md4-tests: Moved from ../. + * modules/crypto/md5: Moved from ../. + * modules/crypto/md5-tests: Moved from ../. + * modules/crypto/memxor: Moved from ../. + * modules/crypto/rijndael: Moved from ../. + * modules/crypto/rijndael-tests: Moved from ../. + * modules/crypto/sha1: Moved from ../. + 2007-03-30 James Youngman * tests/test-stat-time.c (prepare_test): use chmod() rather than diff --git a/modules/arcfour b/modules/arcfour deleted file mode 100644 index a37ec0b7f..000000000 --- a/modules/arcfour +++ /dev/null @@ -1,24 +0,0 @@ -Description: -ARCFOUR stream cipher implementation - -Files: -lib/arcfour.h -lib/arcfour.c -m4/arcfour.m4 - -Depends-on: -stdint - -configure.ac: -gl_ARCFOUR - -Makefile.am: - -Include: -"arcfour.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/arcfour-tests b/modules/arcfour-tests deleted file mode 100644 index f02b0a669..000000000 --- a/modules/arcfour-tests +++ /dev/null @@ -1,10 +0,0 @@ -Files: -tests/test-arcfour.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-arcfour -check_PROGRAMS += test-arcfour diff --git a/modules/arctwo b/modules/arctwo deleted file mode 100644 index 558922278..000000000 --- a/modules/arctwo +++ /dev/null @@ -1,24 +0,0 @@ -Description: -ARCTWO block cipher implementation - -Files: -lib/arctwo.h -lib/arctwo.c -m4/arctwo.m4 - -Depends-on: -stdint - -configure.ac: -gl_ARCTWO - -Makefile.am: - -Include: -"arctwo.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/arctwo-tests b/modules/arctwo-tests deleted file mode 100644 index a0b01da5a..000000000 --- a/modules/arctwo-tests +++ /dev/null @@ -1,10 +0,0 @@ -Files: -tests/test-arctwo.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-arctwo -check_PROGRAMS += test-arctwo diff --git a/modules/crypto/arcfour b/modules/crypto/arcfour new file mode 100644 index 000000000..a37ec0b7f --- /dev/null +++ b/modules/crypto/arcfour @@ -0,0 +1,24 @@ +Description: +ARCFOUR stream cipher implementation + +Files: +lib/arcfour.h +lib/arcfour.c +m4/arcfour.m4 + +Depends-on: +stdint + +configure.ac: +gl_ARCFOUR + +Makefile.am: + +Include: +"arcfour.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/arcfour-tests b/modules/crypto/arcfour-tests new file mode 100644 index 000000000..f02b0a669 --- /dev/null +++ b/modules/crypto/arcfour-tests @@ -0,0 +1,10 @@ +Files: +tests/test-arcfour.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-arcfour +check_PROGRAMS += test-arcfour diff --git a/modules/crypto/arctwo b/modules/crypto/arctwo new file mode 100644 index 000000000..558922278 --- /dev/null +++ b/modules/crypto/arctwo @@ -0,0 +1,24 @@ +Description: +ARCTWO block cipher implementation + +Files: +lib/arctwo.h +lib/arctwo.c +m4/arctwo.m4 + +Depends-on: +stdint + +configure.ac: +gl_ARCTWO + +Makefile.am: + +Include: +"arctwo.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/arctwo-tests b/modules/crypto/arctwo-tests new file mode 100644 index 000000000..a0b01da5a --- /dev/null +++ b/modules/crypto/arctwo-tests @@ -0,0 +1,10 @@ +Files: +tests/test-arctwo.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-arctwo +check_PROGRAMS += test-arctwo diff --git a/modules/crypto/des b/modules/crypto/des new file mode 100644 index 000000000..107796c0f --- /dev/null +++ b/modules/crypto/des @@ -0,0 +1,25 @@ +Description: +DES block cipher. + +Files: +lib/des.c +lib/des.h +m4/des.m4 + +Depends-on: +stdint +stdbool + +configure.ac: +gl_DES + +Makefile.am: + +Include: +"des.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/des-tests b/modules/crypto/des-tests new file mode 100644 index 000000000..a284b6885 --- /dev/null +++ b/modules/crypto/des-tests @@ -0,0 +1,13 @@ +Files: +tests/test-des.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-des +check_PROGRAMS += test-des + +License: +LGPL diff --git a/modules/crypto/gc-arcfour b/modules/crypto/gc-arcfour new file mode 100644 index 000000000..8c7f1fe69 --- /dev/null +++ b/modules/crypto/gc-arcfour @@ -0,0 +1,27 @@ +Description: +Generic crypto wrappers for ARCFOUR stream cipher. + +Files: +m4/gc-arcfour.m4 +lib/arcfour.h +lib/arcfour.c +m4/arcfour.m4 + +Depends-on: +stdint +crypto/gc + +configure.ac: +gl_GC_ARCFOUR +gl_MODULE_INDICATOR([gc-arcfour]) + +Makefile.am: + +Include: +"gc.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/gc-arcfour-tests b/modules/crypto/gc-arcfour-tests new file mode 100644 index 000000000..4c360421b --- /dev/null +++ b/modules/crypto/gc-arcfour-tests @@ -0,0 +1,13 @@ +Files: +tests/test-gc-arcfour.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-gc-arcfour +check_PROGRAMS += test-gc-arcfour + +License: +LGPL diff --git a/modules/crypto/gc-arctwo b/modules/crypto/gc-arctwo new file mode 100644 index 000000000..412ad6ccb --- /dev/null +++ b/modules/crypto/gc-arctwo @@ -0,0 +1,27 @@ +Description: +Generic crypto wrappers for ARCTWO block cipher. + +Files: +m4/gc-arctwo.m4 +lib/arctwo.h +lib/arctwo.c +m4/arctwo.m4 + +Depends-on: +stdint +crypto/gc + +configure.ac: +gl_GC_ARCTWO +gl_MODULE_INDICATOR([gc-arctwo]) + +Makefile.am: + +Include: +"gc.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/gc-arctwo-tests b/modules/crypto/gc-arctwo-tests new file mode 100644 index 000000000..2eda7ef74 --- /dev/null +++ b/modules/crypto/gc-arctwo-tests @@ -0,0 +1,13 @@ +Files: +tests/test-gc-arctwo.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-gc-arctwo +check_PROGRAMS += test-gc-arctwo + +License: +LGPL diff --git a/modules/crypto/gc-des b/modules/crypto/gc-des new file mode 100644 index 000000000..1a2be0ed6 --- /dev/null +++ b/modules/crypto/gc-des @@ -0,0 +1,28 @@ +Description: +Generic crypto wrappers for DES block cipher. + +Files: +m4/gc-des.m4 +lib/des.h +lib/des.c +m4/des.m4 + +Depends-on: +stdint +stdbool +crypto/gc + +configure.ac: +gl_GC_DES +gl_MODULE_INDICATOR([gc-des]) + +Makefile.am: + +Include: +"gc.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/gc-des-tests b/modules/crypto/gc-des-tests new file mode 100644 index 000000000..04ada2b9b --- /dev/null +++ b/modules/crypto/gc-des-tests @@ -0,0 +1,13 @@ +Files: +tests/test-gc-des.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-gc-des +check_PROGRAMS += test-gc-des + +License: +LGPL diff --git a/modules/crypto/gc-hmac-md5 b/modules/crypto/gc-hmac-md5 new file mode 100644 index 000000000..2b3f4b093 --- /dev/null +++ b/modules/crypto/gc-hmac-md5 @@ -0,0 +1,33 @@ +Description: +Generic crypto wrappers for HMAC-MD5 functions. + +Files: +m4/gc-hmac-md5.m4 +lib/md5.h +lib/md5.c +m4/md5.m4 +lib/hmac.h +lib/hmac-md5.c +m4/hmac-md5.m4 +lib/memxor.h +lib/memxor.c +m4/memxor.m4 + +Depends-on: +stdint +crypto/gc + +configure.ac: +gl_GC_HMAC_MD5 +gl_MODULE_INDICATOR([gc-hmac-md5]) + +Makefile.am: + +Include: +"gc.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/gc-hmac-md5-tests b/modules/crypto/gc-hmac-md5-tests new file mode 100644 index 000000000..907e1f8a3 --- /dev/null +++ b/modules/crypto/gc-hmac-md5-tests @@ -0,0 +1,13 @@ +Files: +tests/test-gc-hmac-md5.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-gc-hmac-md5 +check_PROGRAMS += test-gc-hmac-md5 + +License: +LGPL diff --git a/modules/crypto/gc-hmac-sha1 b/modules/crypto/gc-hmac-sha1 new file mode 100644 index 000000000..726e589d7 --- /dev/null +++ b/modules/crypto/gc-hmac-sha1 @@ -0,0 +1,33 @@ +Description: +Generic crypto wrappers for HMAC-SHA1 functions. + +Files: +m4/gc-hmac-sha1.m4 +lib/sha1.h +lib/sha1.c +m4/sha1.m4 +lib/hmac.h +lib/hmac-sha1.c +m4/hmac-sha1.m4 +lib/memxor.h +lib/memxor.c +m4/memxor.m4 + +Depends-on: +stdint +crypto/gc + +configure.ac: +gl_GC_HMAC_SHA1 +gl_MODULE_INDICATOR([gc-hmac-sha1]) + +Makefile.am: + +Include: +"gc.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/gc-hmac-sha1-tests b/modules/crypto/gc-hmac-sha1-tests new file mode 100644 index 000000000..7d74f9f12 --- /dev/null +++ b/modules/crypto/gc-hmac-sha1-tests @@ -0,0 +1,13 @@ +Files: +tests/test-gc-hmac-sha1.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-gc-hmac-sha1 +check_PROGRAMS += test-gc-hmac-sha1 + +License: +LGPL diff --git a/modules/crypto/gc-md2 b/modules/crypto/gc-md2 new file mode 100644 index 000000000..737524746 --- /dev/null +++ b/modules/crypto/gc-md2 @@ -0,0 +1,26 @@ +Description: +Generic crypto wrappers for MD2 functions. + +Files: +m4/gc-md2.m4 + +Depends-on: +stdint +minmax +crypto/gc +crypto/md2 + +configure.ac: +gl_GC_MD2 +gl_MODULE_INDICATOR([gc-md2]) + +Makefile.am: + +Include: +"gc.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/gc-md2-tests b/modules/crypto/gc-md2-tests new file mode 100644 index 000000000..97b4548f4 --- /dev/null +++ b/modules/crypto/gc-md2-tests @@ -0,0 +1,13 @@ +Files: +tests/test-gc-md2.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-gc-md2 +check_PROGRAMS += test-gc-md2 + +License: +LGPL diff --git a/modules/crypto/gc-md4 b/modules/crypto/gc-md4 new file mode 100644 index 000000000..e3c555db7 --- /dev/null +++ b/modules/crypto/gc-md4 @@ -0,0 +1,27 @@ +Description: +Generic crypto wrappers for MD4 functions. + +Files: +m4/gc-md4.m4 +lib/md4.h +lib/md4.c +m4/md4.m4 + +Depends-on: +stdint +crypto/gc + +configure.ac: +gl_GC_MD4 +gl_MODULE_INDICATOR([gc-md4]) + +Makefile.am: + +Include: +"gc.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/gc-md4-tests b/modules/crypto/gc-md4-tests new file mode 100644 index 000000000..4d4554a2a --- /dev/null +++ b/modules/crypto/gc-md4-tests @@ -0,0 +1,13 @@ +Files: +tests/test-gc-md4.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-gc-md4 +check_PROGRAMS += test-gc-md4 + +License: +LGPL diff --git a/modules/crypto/gc-md5 b/modules/crypto/gc-md5 new file mode 100644 index 000000000..da73ab934 --- /dev/null +++ b/modules/crypto/gc-md5 @@ -0,0 +1,28 @@ +Description: +Generic crypto wrappers for MD5 functions. + +Files: +m4/gc-md5.m4 +lib/md5.h +lib/md5.c +m4/md5.m4 + +Depends-on: +stdint +crypto/gc + +configure.ac: +gl_GC_MD5 +gl_MODULE_INDICATOR([gc-md5]) + +Makefile.am: +lib_SOURCES += md5.h + +Include: +"gc.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/gc-md5-tests b/modules/crypto/gc-md5-tests new file mode 100644 index 000000000..425fd27d4 --- /dev/null +++ b/modules/crypto/gc-md5-tests @@ -0,0 +1,13 @@ +Files: +tests/test-gc-md5.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-gc-md5 +check_PROGRAMS += test-gc-md5 + +License: +LGPL diff --git a/modules/crypto/gc-pbkdf2-sha1 b/modules/crypto/gc-pbkdf2-sha1 new file mode 100644 index 000000000..e1c430fc2 --- /dev/null +++ b/modules/crypto/gc-pbkdf2-sha1 @@ -0,0 +1,24 @@ +Description: +Password-Based Key Derivation Function according to PKCS#5/RFC2898 + +Files: +lib/gc-pbkdf2-sha1.c +m4/gc-pbkdf2-sha1.m4 + +Depends-on: +crypto/gc +crypto/gc-hmac-sha1 + +configure.ac: +gl_GC_PBKDF2_SHA1 + +Makefile.am: + +Include: +"gc.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/gc-pbkdf2-sha1-tests b/modules/crypto/gc-pbkdf2-sha1-tests new file mode 100644 index 000000000..1d4526939 --- /dev/null +++ b/modules/crypto/gc-pbkdf2-sha1-tests @@ -0,0 +1,13 @@ +Files: +tests/test-gc-pbkdf2-sha1.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-gc-pbkdf2-sha1 +check_PROGRAMS += test-gc-pbkdf2-sha1 + +License: +LGPL diff --git a/modules/crypto/gc-random b/modules/crypto/gc-random new file mode 100644 index 000000000..74b879c1e --- /dev/null +++ b/modules/crypto/gc-random @@ -0,0 +1,23 @@ +Description: +Generic crypto random number functions. + +Files: +m4/gc-random.m4 + +Depends-on: +crypto/gc + +configure.ac: +gl_GC_RANDOM +gl_MODULE_INDICATOR([gc-random]) + +Makefile.am: + +Include: +"gc.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/gc-rijndael b/modules/crypto/gc-rijndael new file mode 100644 index 000000000..5cf1496c4 --- /dev/null +++ b/modules/crypto/gc-rijndael @@ -0,0 +1,29 @@ +Description: +Generic crypto wrappers for rijndael block cipher. + +Files: +m4/gc-rijndael.m4 +lib/rijndael-alg-fst.c +lib/rijndael-alg-fst.h +lib/rijndael-api-fst.c +lib/rijndael-api-fst.h +m4/rijndael.m4 + +Depends-on: +stdint +crypto/gc + +configure.ac: +gl_GC_RIJNDAEL +gl_MODULE_INDICATOR([gc-rijndael]) + +Makefile.am: + +Include: +"gc.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/gc-rijndael-tests b/modules/crypto/gc-rijndael-tests new file mode 100644 index 000000000..24654206d --- /dev/null +++ b/modules/crypto/gc-rijndael-tests @@ -0,0 +1,13 @@ +Files: +tests/test-gc-rijndael.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-gc-rijndael +check_PROGRAMS += test-gc-rijndael + +License: +LGPL diff --git a/modules/crypto/gc-sha1 b/modules/crypto/gc-sha1 new file mode 100644 index 000000000..7db6c1db1 --- /dev/null +++ b/modules/crypto/gc-sha1 @@ -0,0 +1,27 @@ +Description: +Generic crypto wrappers for SHA-1 functions. + +Files: +m4/gc-sha1.m4 +lib/sha1.h +lib/sha1.c +m4/sha1.m4 + +Depends-on: +stdint +crypto/gc + +configure.ac: +gl_GC_SHA1 +gl_MODULE_INDICATOR([gc-sha1]) + +Makefile.am: + +Include: +"gc.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/gc-sha1-tests b/modules/crypto/gc-sha1-tests new file mode 100644 index 000000000..20a906e2b --- /dev/null +++ b/modules/crypto/gc-sha1-tests @@ -0,0 +1,13 @@ +Files: +tests/test-gc-sha1.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-gc-sha1 +check_PROGRAMS += test-gc-sha1 + +License: +LGPL diff --git a/modules/crypto/gc-tests b/modules/crypto/gc-tests new file mode 100644 index 000000000..7a3fdbffd --- /dev/null +++ b/modules/crypto/gc-tests @@ -0,0 +1,13 @@ +Files: +tests/test-gc.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-gc +check_PROGRAMS += test-gc + +License: +LGPL diff --git a/modules/crypto/hmac-md5 b/modules/crypto/hmac-md5 new file mode 100644 index 000000000..daa84b4f7 --- /dev/null +++ b/modules/crypto/hmac-md5 @@ -0,0 +1,25 @@ +Description: +Compute hashed message authentication codes with MD5. + +Files: +lib/hmac.h +lib/hmac-md5.c +m4/hmac-md5.m4 + +Depends-on: +memxor +crypto/md5 + +configure.ac: +gl_HMAC_MD5 + +Makefile.am: + +Include: +"hmac.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/hmac-md5-tests b/modules/crypto/hmac-md5-tests new file mode 100644 index 000000000..738ee5124 --- /dev/null +++ b/modules/crypto/hmac-md5-tests @@ -0,0 +1,10 @@ +Files: +tests/test-hmac-md5.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-hmac-md5 +check_PROGRAMS += test-hmac-md5 diff --git a/modules/crypto/hmac-sha1 b/modules/crypto/hmac-sha1 new file mode 100644 index 000000000..f7a4c8340 --- /dev/null +++ b/modules/crypto/hmac-sha1 @@ -0,0 +1,25 @@ +Description: +Compute hashed message authentication codes with SHA1. + +Files: +lib/hmac.h +lib/hmac-sha1.c +m4/hmac-sha1.m4 + +Depends-on: +crypto/memxor +crypto/sha1 + +configure.ac: +gl_HMAC_SHA1 + +Makefile.am: + +Include: +"hmac.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/hmac-sha1-tests b/modules/crypto/hmac-sha1-tests new file mode 100644 index 000000000..ddebc58d8 --- /dev/null +++ b/modules/crypto/hmac-sha1-tests @@ -0,0 +1,10 @@ +Files: +tests/test-hmac-sha1.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-hmac-sha1 +check_PROGRAMS += test-hmac-sha1 diff --git a/modules/crypto/md2 b/modules/crypto/md2 new file mode 100644 index 000000000..f3fa344e0 --- /dev/null +++ b/modules/crypto/md2 @@ -0,0 +1,24 @@ +Description: +Compute MD2 checksum. + +Files: +lib/md2.h +lib/md2.c +m4/md2.m4 + +Depends-on: +minmax + +configure.ac: +gl_MD2 + +Makefile.am: + +Include: +"md2.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/md2-tests b/modules/crypto/md2-tests new file mode 100644 index 000000000..c8cbdee72 --- /dev/null +++ b/modules/crypto/md2-tests @@ -0,0 +1,13 @@ +Files: +tests/test-md2.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-md2 +check_PROGRAMS += test-md2 + +License: +LGPL diff --git a/modules/crypto/md4 b/modules/crypto/md4 new file mode 100644 index 000000000..9ecfd616d --- /dev/null +++ b/modules/crypto/md4 @@ -0,0 +1,24 @@ +Description: +Compute MD4 checksum. + +Files: +lib/md4.h +lib/md4.c +m4/md4.m4 + +Depends-on: +stdint + +configure.ac: +gl_MD4 + +Makefile.am: + +Include: +"md4.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/md4-tests b/modules/crypto/md4-tests new file mode 100644 index 000000000..8c8bcb839 --- /dev/null +++ b/modules/crypto/md4-tests @@ -0,0 +1,13 @@ +Files: +tests/test-md4.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-md4 +check_PROGRAMS += test-md4 + +License: +LGPL diff --git a/modules/crypto/md5 b/modules/crypto/md5 new file mode 100644 index 000000000..250c94f62 --- /dev/null +++ b/modules/crypto/md5 @@ -0,0 +1,24 @@ +Description: +Compute MD5 checksum. + +Files: +lib/md5.h +lib/md5.c +m4/md5.m4 + +Depends-on: +stdint + +configure.ac: +gl_MD5 + +Makefile.am: + +Include: +"md5.h" + +License: +LGPL + +Maintainer: +Jim Meyering, glibc diff --git a/modules/crypto/md5-tests b/modules/crypto/md5-tests new file mode 100644 index 000000000..94bc3e44c --- /dev/null +++ b/modules/crypto/md5-tests @@ -0,0 +1,10 @@ +Files: +tests/test-md5.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-md5 +check_PROGRAMS += test-md5 diff --git a/modules/crypto/memxor b/modules/crypto/memxor new file mode 100644 index 000000000..2fdcb3e4a --- /dev/null +++ b/modules/crypto/memxor @@ -0,0 +1,23 @@ +Description: +memxor() function: binary exclusive or operation on two memory blocks + +Files: +lib/memxor.h +lib/memxor.c +m4/memxor.m4 + +Depends-on: + +configure.ac: +gl_MEMXOR + +Makefile.am: + +Include: +"memxor.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/rijndael b/modules/crypto/rijndael new file mode 100644 index 000000000..21579bfc0 --- /dev/null +++ b/modules/crypto/rijndael @@ -0,0 +1,27 @@ +Description: +Rijndael block cipher. + +Files: +lib/rijndael-alg-fst.c +lib/rijndael-alg-fst.h +lib/rijndael-api-fst.c +lib/rijndael-api-fst.h +m4/rijndael.m4 + +Depends-on: +stdint + +configure.ac: +gl_RIJNDAEL + +Makefile.am: + +Include: +"rijndael-alg-fst.h" +"rijndael-api-fst.h" + +License: +LGPL + +Maintainer: +Simon Josefsson diff --git a/modules/crypto/rijndael-tests b/modules/crypto/rijndael-tests new file mode 100644 index 000000000..cbf861f82 --- /dev/null +++ b/modules/crypto/rijndael-tests @@ -0,0 +1,10 @@ +Files: +tests/test-rijndael.c + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-rijndael +check_PROGRAMS += test-rijndael diff --git a/modules/crypto/sha1 b/modules/crypto/sha1 new file mode 100644 index 000000000..6e85b813c --- /dev/null +++ b/modules/crypto/sha1 @@ -0,0 +1,24 @@ +Description: +Compute SHA1 checksum. + +Files: +lib/sha1.h +lib/sha1.c +m4/sha1.m4 + +Depends-on: +stdint + +configure.ac: +gl_SHA1 + +Makefile.am: + +Include: +"sha1.h" + +License: +LGPL + +Maintainer: +Jim Meyering diff --git a/modules/des b/modules/des deleted file mode 100644 index 107796c0f..000000000 --- a/modules/des +++ /dev/null @@ -1,25 +0,0 @@ -Description: -DES block cipher. - -Files: -lib/des.c -lib/des.h -m4/des.m4 - -Depends-on: -stdint -stdbool - -configure.ac: -gl_DES - -Makefile.am: - -Include: -"des.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/des-tests b/modules/des-tests deleted file mode 100644 index a284b6885..000000000 --- a/modules/des-tests +++ /dev/null @@ -1,13 +0,0 @@ -Files: -tests/test-des.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-des -check_PROGRAMS += test-des - -License: -LGPL diff --git a/modules/gc-arcfour b/modules/gc-arcfour deleted file mode 100644 index 64136e36c..000000000 --- a/modules/gc-arcfour +++ /dev/null @@ -1,27 +0,0 @@ -Description: -Generic crypto wrappers for ARCFOUR stream cipher. - -Files: -m4/gc-arcfour.m4 -lib/arcfour.h -lib/arcfour.c -m4/arcfour.m4 - -Depends-on: -stdint -gc - -configure.ac: -gl_GC_ARCFOUR -gl_MODULE_INDICATOR([gc-arcfour]) - -Makefile.am: - -Include: -"gc.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/gc-arcfour-tests b/modules/gc-arcfour-tests deleted file mode 100644 index 4c360421b..000000000 --- a/modules/gc-arcfour-tests +++ /dev/null @@ -1,13 +0,0 @@ -Files: -tests/test-gc-arcfour.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-gc-arcfour -check_PROGRAMS += test-gc-arcfour - -License: -LGPL diff --git a/modules/gc-arctwo b/modules/gc-arctwo deleted file mode 100644 index 1c764392b..000000000 --- a/modules/gc-arctwo +++ /dev/null @@ -1,27 +0,0 @@ -Description: -Generic crypto wrappers for ARCTWO block cipher. - -Files: -m4/gc-arctwo.m4 -lib/arctwo.h -lib/arctwo.c -m4/arctwo.m4 - -Depends-on: -stdint -gc - -configure.ac: -gl_GC_ARCTWO -gl_MODULE_INDICATOR([gc-arctwo]) - -Makefile.am: - -Include: -"gc.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/gc-arctwo-tests b/modules/gc-arctwo-tests deleted file mode 100644 index 2eda7ef74..000000000 --- a/modules/gc-arctwo-tests +++ /dev/null @@ -1,13 +0,0 @@ -Files: -tests/test-gc-arctwo.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-gc-arctwo -check_PROGRAMS += test-gc-arctwo - -License: -LGPL diff --git a/modules/gc-des b/modules/gc-des deleted file mode 100644 index 49c398354..000000000 --- a/modules/gc-des +++ /dev/null @@ -1,28 +0,0 @@ -Description: -Generic crypto wrappers for DES block cipher. - -Files: -m4/gc-des.m4 -lib/des.h -lib/des.c -m4/des.m4 - -Depends-on: -stdint -stdbool -gc - -configure.ac: -gl_GC_DES -gl_MODULE_INDICATOR([gc-des]) - -Makefile.am: - -Include: -"gc.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/gc-des-tests b/modules/gc-des-tests deleted file mode 100644 index 04ada2b9b..000000000 --- a/modules/gc-des-tests +++ /dev/null @@ -1,13 +0,0 @@ -Files: -tests/test-gc-des.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-gc-des -check_PROGRAMS += test-gc-des - -License: -LGPL diff --git a/modules/gc-hmac-md5 b/modules/gc-hmac-md5 deleted file mode 100644 index 607c43b8b..000000000 --- a/modules/gc-hmac-md5 +++ /dev/null @@ -1,33 +0,0 @@ -Description: -Generic crypto wrappers for HMAC-MD5 functions. - -Files: -m4/gc-hmac-md5.m4 -lib/md5.h -lib/md5.c -m4/md5.m4 -lib/hmac.h -lib/hmac-md5.c -m4/hmac-md5.m4 -lib/memxor.h -lib/memxor.c -m4/memxor.m4 - -Depends-on: -stdint -gc - -configure.ac: -gl_GC_HMAC_MD5 -gl_MODULE_INDICATOR([gc-hmac-md5]) - -Makefile.am: - -Include: -"gc.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/gc-hmac-md5-tests b/modules/gc-hmac-md5-tests deleted file mode 100644 index 907e1f8a3..000000000 --- a/modules/gc-hmac-md5-tests +++ /dev/null @@ -1,13 +0,0 @@ -Files: -tests/test-gc-hmac-md5.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-gc-hmac-md5 -check_PROGRAMS += test-gc-hmac-md5 - -License: -LGPL diff --git a/modules/gc-hmac-sha1 b/modules/gc-hmac-sha1 deleted file mode 100644 index 4e855ac06..000000000 --- a/modules/gc-hmac-sha1 +++ /dev/null @@ -1,33 +0,0 @@ -Description: -Generic crypto wrappers for HMAC-SHA1 functions. - -Files: -m4/gc-hmac-sha1.m4 -lib/sha1.h -lib/sha1.c -m4/sha1.m4 -lib/hmac.h -lib/hmac-sha1.c -m4/hmac-sha1.m4 -lib/memxor.h -lib/memxor.c -m4/memxor.m4 - -Depends-on: -stdint -gc - -configure.ac: -gl_GC_HMAC_SHA1 -gl_MODULE_INDICATOR([gc-hmac-sha1]) - -Makefile.am: - -Include: -"gc.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/gc-hmac-sha1-tests b/modules/gc-hmac-sha1-tests deleted file mode 100644 index 7d74f9f12..000000000 --- a/modules/gc-hmac-sha1-tests +++ /dev/null @@ -1,13 +0,0 @@ -Files: -tests/test-gc-hmac-sha1.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-gc-hmac-sha1 -check_PROGRAMS += test-gc-hmac-sha1 - -License: -LGPL diff --git a/modules/gc-md2 b/modules/gc-md2 deleted file mode 100644 index 2a36a0446..000000000 --- a/modules/gc-md2 +++ /dev/null @@ -1,26 +0,0 @@ -Description: -Generic crypto wrappers for MD2 functions. - -Files: -m4/gc-md2.m4 - -Depends-on: -stdint -gc -minmax -md2 - -configure.ac: -gl_GC_MD2 -gl_MODULE_INDICATOR([gc-md2]) - -Makefile.am: - -Include: -"gc.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/gc-md2-tests b/modules/gc-md2-tests deleted file mode 100644 index 97b4548f4..000000000 --- a/modules/gc-md2-tests +++ /dev/null @@ -1,13 +0,0 @@ -Files: -tests/test-gc-md2.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-gc-md2 -check_PROGRAMS += test-gc-md2 - -License: -LGPL diff --git a/modules/gc-md4 b/modules/gc-md4 deleted file mode 100644 index e74c309df..000000000 --- a/modules/gc-md4 +++ /dev/null @@ -1,27 +0,0 @@ -Description: -Generic crypto wrappers for MD4 functions. - -Files: -m4/gc-md4.m4 -lib/md4.h -lib/md4.c -m4/md4.m4 - -Depends-on: -stdint -gc - -configure.ac: -gl_GC_MD4 -gl_MODULE_INDICATOR([gc-md4]) - -Makefile.am: - -Include: -"gc.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/gc-md4-tests b/modules/gc-md4-tests deleted file mode 100644 index 4d4554a2a..000000000 --- a/modules/gc-md4-tests +++ /dev/null @@ -1,13 +0,0 @@ -Files: -tests/test-gc-md4.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-gc-md4 -check_PROGRAMS += test-gc-md4 - -License: -LGPL diff --git a/modules/gc-md5 b/modules/gc-md5 deleted file mode 100644 index 4a5c19002..000000000 --- a/modules/gc-md5 +++ /dev/null @@ -1,28 +0,0 @@ -Description: -Generic crypto wrappers for MD5 functions. - -Files: -m4/gc-md5.m4 -lib/md5.h -lib/md5.c -m4/md5.m4 - -Depends-on: -stdint -gc - -configure.ac: -gl_GC_MD5 -gl_MODULE_INDICATOR([gc-md5]) - -Makefile.am: -lib_SOURCES += md5.h - -Include: -"gc.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/gc-md5-tests b/modules/gc-md5-tests deleted file mode 100644 index 425fd27d4..000000000 --- a/modules/gc-md5-tests +++ /dev/null @@ -1,13 +0,0 @@ -Files: -tests/test-gc-md5.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-gc-md5 -check_PROGRAMS += test-gc-md5 - -License: -LGPL diff --git a/modules/gc-pbkdf2-sha1 b/modules/gc-pbkdf2-sha1 deleted file mode 100644 index 431e05420..000000000 --- a/modules/gc-pbkdf2-sha1 +++ /dev/null @@ -1,24 +0,0 @@ -Description: -Password-Based Key Derivation Function according to PKCS#5/RFC2898 - -Files: -lib/gc-pbkdf2-sha1.c -m4/gc-pbkdf2-sha1.m4 - -Depends-on: -gc -gc-hmac-sha1 - -configure.ac: -gl_GC_PBKDF2_SHA1 - -Makefile.am: - -Include: -"gc.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/gc-pbkdf2-sha1-tests b/modules/gc-pbkdf2-sha1-tests deleted file mode 100644 index 1d4526939..000000000 --- a/modules/gc-pbkdf2-sha1-tests +++ /dev/null @@ -1,13 +0,0 @@ -Files: -tests/test-gc-pbkdf2-sha1.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-gc-pbkdf2-sha1 -check_PROGRAMS += test-gc-pbkdf2-sha1 - -License: -LGPL diff --git a/modules/gc-random b/modules/gc-random deleted file mode 100644 index 668c8c394..000000000 --- a/modules/gc-random +++ /dev/null @@ -1,23 +0,0 @@ -Description: -Generic crypto random number functions. - -Files: -m4/gc-random.m4 - -Depends-on: -gc - -configure.ac: -gl_GC_RANDOM -gl_MODULE_INDICATOR([gc-random]) - -Makefile.am: - -Include: -"gc.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/gc-rijndael b/modules/gc-rijndael deleted file mode 100644 index c38f44128..000000000 --- a/modules/gc-rijndael +++ /dev/null @@ -1,29 +0,0 @@ -Description: -Generic crypto wrappers for rijndael block cipher. - -Files: -m4/gc-rijndael.m4 -lib/rijndael-alg-fst.c -lib/rijndael-alg-fst.h -lib/rijndael-api-fst.c -lib/rijndael-api-fst.h -m4/rijndael.m4 - -Depends-on: -stdint -gc - -configure.ac: -gl_GC_RIJNDAEL -gl_MODULE_INDICATOR([gc-rijndael]) - -Makefile.am: - -Include: -"gc.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/gc-rijndael-tests b/modules/gc-rijndael-tests deleted file mode 100644 index 24654206d..000000000 --- a/modules/gc-rijndael-tests +++ /dev/null @@ -1,13 +0,0 @@ -Files: -tests/test-gc-rijndael.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-gc-rijndael -check_PROGRAMS += test-gc-rijndael - -License: -LGPL diff --git a/modules/gc-sha1 b/modules/gc-sha1 deleted file mode 100644 index 8f7e21021..000000000 --- a/modules/gc-sha1 +++ /dev/null @@ -1,27 +0,0 @@ -Description: -Generic crypto wrappers for SHA-1 functions. - -Files: -m4/gc-sha1.m4 -lib/sha1.h -lib/sha1.c -m4/sha1.m4 - -Depends-on: -stdint -gc - -configure.ac: -gl_GC_SHA1 -gl_MODULE_INDICATOR([gc-sha1]) - -Makefile.am: - -Include: -"gc.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/gc-sha1-tests b/modules/gc-sha1-tests deleted file mode 100644 index 20a906e2b..000000000 --- a/modules/gc-sha1-tests +++ /dev/null @@ -1,13 +0,0 @@ -Files: -tests/test-gc-sha1.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-gc-sha1 -check_PROGRAMS += test-gc-sha1 - -License: -LGPL diff --git a/modules/gc-tests b/modules/gc-tests deleted file mode 100644 index 7a3fdbffd..000000000 --- a/modules/gc-tests +++ /dev/null @@ -1,13 +0,0 @@ -Files: -tests/test-gc.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-gc -check_PROGRAMS += test-gc - -License: -LGPL diff --git a/modules/hmac-md5 b/modules/hmac-md5 deleted file mode 100644 index acfce4b4b..000000000 --- a/modules/hmac-md5 +++ /dev/null @@ -1,25 +0,0 @@ -Description: -Compute hashed message authentication codes with MD5. - -Files: -lib/hmac.h -lib/hmac-md5.c -m4/hmac-md5.m4 - -Depends-on: -memxor -md5 - -configure.ac: -gl_HMAC_MD5 - -Makefile.am: - -Include: -"hmac.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/hmac-md5-tests b/modules/hmac-md5-tests deleted file mode 100644 index 738ee5124..000000000 --- a/modules/hmac-md5-tests +++ /dev/null @@ -1,10 +0,0 @@ -Files: -tests/test-hmac-md5.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-hmac-md5 -check_PROGRAMS += test-hmac-md5 diff --git a/modules/hmac-sha1 b/modules/hmac-sha1 deleted file mode 100644 index 9b630c5ae..000000000 --- a/modules/hmac-sha1 +++ /dev/null @@ -1,25 +0,0 @@ -Description: -Compute hashed message authentication codes with SHA1. - -Files: -lib/hmac.h -lib/hmac-sha1.c -m4/hmac-sha1.m4 - -Depends-on: -memxor -sha1 - -configure.ac: -gl_HMAC_SHA1 - -Makefile.am: - -Include: -"hmac.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/hmac-sha1-tests b/modules/hmac-sha1-tests deleted file mode 100644 index ddebc58d8..000000000 --- a/modules/hmac-sha1-tests +++ /dev/null @@ -1,10 +0,0 @@ -Files: -tests/test-hmac-sha1.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-hmac-sha1 -check_PROGRAMS += test-hmac-sha1 diff --git a/modules/md2 b/modules/md2 deleted file mode 100644 index f3fa344e0..000000000 --- a/modules/md2 +++ /dev/null @@ -1,24 +0,0 @@ -Description: -Compute MD2 checksum. - -Files: -lib/md2.h -lib/md2.c -m4/md2.m4 - -Depends-on: -minmax - -configure.ac: -gl_MD2 - -Makefile.am: - -Include: -"md2.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/md2-tests b/modules/md2-tests deleted file mode 100644 index c8cbdee72..000000000 --- a/modules/md2-tests +++ /dev/null @@ -1,13 +0,0 @@ -Files: -tests/test-md2.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-md2 -check_PROGRAMS += test-md2 - -License: -LGPL diff --git a/modules/md4 b/modules/md4 deleted file mode 100644 index 9ecfd616d..000000000 --- a/modules/md4 +++ /dev/null @@ -1,24 +0,0 @@ -Description: -Compute MD4 checksum. - -Files: -lib/md4.h -lib/md4.c -m4/md4.m4 - -Depends-on: -stdint - -configure.ac: -gl_MD4 - -Makefile.am: - -Include: -"md4.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/md4-tests b/modules/md4-tests deleted file mode 100644 index 8c8bcb839..000000000 --- a/modules/md4-tests +++ /dev/null @@ -1,13 +0,0 @@ -Files: -tests/test-md4.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-md4 -check_PROGRAMS += test-md4 - -License: -LGPL diff --git a/modules/md5 b/modules/md5 deleted file mode 100644 index 250c94f62..000000000 --- a/modules/md5 +++ /dev/null @@ -1,24 +0,0 @@ -Description: -Compute MD5 checksum. - -Files: -lib/md5.h -lib/md5.c -m4/md5.m4 - -Depends-on: -stdint - -configure.ac: -gl_MD5 - -Makefile.am: - -Include: -"md5.h" - -License: -LGPL - -Maintainer: -Jim Meyering, glibc diff --git a/modules/md5-tests b/modules/md5-tests deleted file mode 100644 index 94bc3e44c..000000000 --- a/modules/md5-tests +++ /dev/null @@ -1,10 +0,0 @@ -Files: -tests/test-md5.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-md5 -check_PROGRAMS += test-md5 diff --git a/modules/memxor b/modules/memxor deleted file mode 100644 index 2fdcb3e4a..000000000 --- a/modules/memxor +++ /dev/null @@ -1,23 +0,0 @@ -Description: -memxor() function: binary exclusive or operation on two memory blocks - -Files: -lib/memxor.h -lib/memxor.c -m4/memxor.m4 - -Depends-on: - -configure.ac: -gl_MEMXOR - -Makefile.am: - -Include: -"memxor.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/rijndael b/modules/rijndael deleted file mode 100644 index 21579bfc0..000000000 --- a/modules/rijndael +++ /dev/null @@ -1,27 +0,0 @@ -Description: -Rijndael block cipher. - -Files: -lib/rijndael-alg-fst.c -lib/rijndael-alg-fst.h -lib/rijndael-api-fst.c -lib/rijndael-api-fst.h -m4/rijndael.m4 - -Depends-on: -stdint - -configure.ac: -gl_RIJNDAEL - -Makefile.am: - -Include: -"rijndael-alg-fst.h" -"rijndael-api-fst.h" - -License: -LGPL - -Maintainer: -Simon Josefsson diff --git a/modules/rijndael-tests b/modules/rijndael-tests deleted file mode 100644 index cbf861f82..000000000 --- a/modules/rijndael-tests +++ /dev/null @@ -1,10 +0,0 @@ -Files: -tests/test-rijndael.c - -Depends-on: - -configure.ac: - -Makefile.am: -TESTS += test-rijndael -check_PROGRAMS += test-rijndael diff --git a/modules/sha1 b/modules/sha1 deleted file mode 100644 index 6e85b813c..000000000 --- a/modules/sha1 +++ /dev/null @@ -1,24 +0,0 @@ -Description: -Compute SHA1 checksum. - -Files: -lib/sha1.h -lib/sha1.c -m4/sha1.m4 - -Depends-on: -stdint - -configure.ac: -gl_SHA1 - -Makefile.am: - -Include: -"sha1.h" - -License: -LGPL - -Maintainer: -Jim Meyering