summaryrefslogtreecommitdiff
path: root/cipher/md.c
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2002-05-02 14:09:27 +0000
committerWerner Koch <wk@gnupg.org>2002-05-02 14:09:27 +0000
commit9e4c8a9ed1ea23264295969053c6a09965ec224d (patch)
tree656e5407aa8cf3225db1d98caddb1b9d17b4037b /cipher/md.c
parent5c1359f10190b23c5d95dfd711809cb656e600dc (diff)
downloadlibgcrypt-9e4c8a9ed1ea23264295969053c6a09965ec224d.tar.gz
* random.c (_gcry_fast_random_poll): Initialize the module so the
mutex can be used. * primegen.c (small_prime_numbers): Moved table from smallprime.c * smallprime.c: Fiel removed. * des.c (leftkey_swap, rightkey_swap, working_memcmp): Made static. * cipher.c (gcry_cipher_map_name): Map "RIJNDAEL" to "AES". * rijndael.c (rijndael_get_info): We do only support a 128 bit blocksize so it makes sense to change the algorithm strings to AES. * tiger.c (tiger_final): Removed superfluous token pasting operators. * md5.c (md5_final): Ditto.
Diffstat (limited to 'cipher/md.c')
-rw-r--r--cipher/md.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/cipher/md.c b/cipher/md.c
index 26382a1a..b6dfada0 100644
--- a/cipher/md.c
+++ b/cipher/md.c
@@ -43,6 +43,9 @@ static struct {
{ "1.2.840.10040.4.3", GCRY_MD_SHA1 },
/* from NIST's OIW (sha1) */
{ "1.3.14.3.2.26", GCRY_MD_SHA1 },
+ /* rsaSignatureWithripemd160 */
+ { "1.3.36.3.3.1.2", GCRY_MD_RMD160 },
+
{NULL}
};
@@ -129,7 +132,7 @@ new_list_item( int algo,
/****************
- * Try to load the modules with the requeste algorithm
+ * Try to load the modules with the requested algorithm
* and return true if new modules are available
* If req_alog is -1 try to load all digest algorithms.
*/