Here's a patch that will implement RIPEMD-160 for nettle. It's code
ported from libgcrypt. A reference to RIPEMD-160 is in the source.
Also, this patch includes testcases and I followed what looked to me
as nettle coding conventions.

There's no documentation update in this patch. I didn't look into how
documentation was generated in nettle.

Also, this patch is against the nettle-2.2 release. I couldn't get the
CVS snapshot of nettle building, particularly because of the
integration of LSH.

-- 
Regards,
Andres Mejia
diff --git a/Makefile.in b/Makefile.in
index fd486f5..cbb4ce4 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -68,6 +68,7 @@ nettle_SOURCES = aes-decrypt-internal.c aes-decrypt.c \
 		 knuth-lfib.c \
 		 md2.c md2-meta.c md4.c md4-meta.c \
 		 md5.c md5-compress.c md5-compat.c md5-meta.c \
+		 rmd160.c rmd160-compress.c rmd160-meta.c \
 		 sha1.c sha1-compress.c sha1-meta.c \
 		 sha256.c sha256-compress.c sha224-meta.c sha256-meta.c \
 		 sha512.c sha512-compress.c sha384-meta.c sha512-meta.c \
@@ -113,7 +114,7 @@ HEADERS = aes.h arcfour.h arctwo.h asn1.h bignum.h blowfish.h \
 	  md5.h md5-compat.h \
 	  memxor.h \
 	  nettle-meta.h nettle-types.h \
-	  pgp.h pkcs1.h realloc.h rsa.h rsa-compat.h \
+	  pgp.h pkcs1.h realloc.h rmd.h rsa.h rsa-compat.h \
 	  sexp.h \
 	  serpent.h sha.h twofish.h \
 	  yarrow.h
diff --git a/nettle-meta-hashes.c b/nettle-meta-hashes.c
index 9007ea1..fdfec2e 100644
--- a/nettle-meta-hashes.c
+++ b/nettle-meta-hashes.c
@@ -31,6 +31,7 @@ const struct nettle_hash * const nettle_hashes[] = {
   &nettle_md2,
   &nettle_md4,
   &nettle_md5,
+  &nettle_rmd160,
   &nettle_sha1,
   &nettle_sha224,
   &nettle_sha256,
diff --git a/nettle-meta.h b/nettle-meta.h
index 0fbfc03..5cb42e3 100644
--- a/nettle-meta.h
+++ b/nettle-meta.h
@@ -158,6 +158,7 @@ extern const struct nettle_hash * const nettle_hashes[];
 extern const struct nettle_hash nettle_md2;
 extern const struct nettle_hash nettle_md4;
 extern const struct nettle_hash nettle_md5;
+extern const struct nettle_hash nettle_rmd160;
 extern const struct nettle_hash nettle_sha1;
 extern const struct nettle_hash nettle_sha224;
 extern const struct nettle_hash nettle_sha256;
diff --git a/rmd.h b/rmd.h
new file mode 100644
index 0000000..26400d6
--- /dev/null
+++ b/rmd.h
@@ -0,0 +1,78 @@
+/* rmd.h
+ *
+ * RIPEMD hash functions.
+ */
+
+/* nettle, low-level cryptographics library
+ *
+ * Copyright (C) 2001 Niels Möller
+ *
+ * The nettle library is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or (at your
+ * option) any later version.
+ *
+ * The nettle library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
+ * License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with the nettle library; see the file COPYING.LIB.  If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+ * MA 02111-1307, USA.
+ */
+
+#ifndef NETTLE_RMD_H_INCLUDED
+#define NETTLE_RMD_H_INCLUDED
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <stdint.h>
+
+/* Name mangling */
+#define rmd160_init nettle_rmd160_init
+#define rmd160_update nettle_rmd160_update
+#define rmd160_digest nettle_rmd160_digest
+
+/* RMD160 */
+
+#define RMD160_DIGEST_SIZE 20
+#define RMD160_DATA_SIZE 64
+
+/* Digest is kept internally as 5 32-bit words. */
+#define _RMD160_DIGEST_LENGTH 5
+
+struct rmd160_ctx
+{
+  uint32_t digest[_RMD160_DIGEST_LENGTH];
+  uint32_t nblocks;
+  uint8_t block[RMD160_DATA_SIZE];
+  unsigned int index;
+};
+
+void
+rmd160_init(struct rmd160_ctx *ctx);
+
+void
+rmd160_update(struct rmd160_ctx *ctx,
+      unsigned length,
+      const uint8_t *data);
+
+void
+rmd160_digest(struct rmd160_ctx *ctx,
+      unsigned length,
+      uint8_t *digest);
+
+/* Internal compression function. STATE points to 5 uint32_t words,
+   and DATA points to 64 bytes of input data, possibly unaligned. */
+void
+_nettle_rmd160_compress(uint32_t *state, const uint8_t *data);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* NETTLE_RMD_H_INCLUDED */
diff --git a/rmd160-compress.c b/rmd160-compress.c
new file mode 100644
index 0000000..6fc2899
--- /dev/null
+++ b/rmd160-compress.c
@@ -0,0 +1,277 @@
+/* rmd160-compress.c  -  RIPE-MD160 (Transform function)
+ * Copyright (C) 1998, 2001, 2002, 2003 Free Software Foundation, Inc.
+ *
+ * The nettle library is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or (at your
+ * option) any later version.
+ *
+ * The nettle library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
+ * License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with the nettle library; see the file COPYING.LIB.  If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+ * MA 02111-1307, USA.
+ */
+
+#include <string.h>
+
+#include "rmd.h"
+
+/****************
+ * Rotate the 32 bit unsigned integer X by N bits left/right
+ */
+#if defined(__GNUC__) && defined(__i386__)
+static inline uint32_t
+rol(uint32_t x, int n)
+{
+  __asm__("roll %%cl,%0"
+    :"=r" (x)
+    :"0" (x),"c" (n));
+  return x;
+}
+#else
+#define rol(x,n) ( ((x) << (n)) | ((x) >> (32-(n))) )
+#endif
+
+/****************
+ * Transform the message X which consists of 16 32-bit-words
+ */
+void
+_nettle_rmd160_compress(uint32_t *state, const uint8_t *data)
+{
+  register uint32_t a,b,c,d,e;
+  uint32_t aa,bb,cc,dd,ee,t;
+#ifdef WORDS_BIGENDIAN
+  uint32_t x[16];
+  {
+    int i;
+    uint8_t *p2, *p1;
+    for (i=0, p1=data, p2=(uint8_t*)x; i < 16; i++, p2 += 4 )
+    {
+      p2[3] = *p1++;
+      p2[2] = *p1++;
+      p2[1] = *p1++;
+      p2[0] = *p1++;
+    }
+  }
+#else
+  /* This version is better because it is always aligned;
+   * The performance penalty on a 586-100 is about 6% which
+   * is acceptable - because the data is more local it might
+   * also be possible that this is faster on some machines.
+   * This function (when compiled with -02 on gcc 2.7.2)
+   * executes on a 586-100 (39.73 bogomips) at about 1900kb/sec;
+   * [measured with a 4MB data and "gpgm --print-md rmd160"] */
+  uint32_t x[16];
+  memcpy(x, data, 64);
+#endif
+
+
+#define K0  0x00000000
+#define K1  0x5A827999
+#define K2  0x6ED9EBA1
+#define K3  0x8F1BBCDC
+#define K4  0xA953FD4E
+#define KK0 0x50A28BE6
+#define KK1 0x5C4DD124
+#define KK2 0x6D703EF3
+#define KK3 0x7A6D76E9
+#define KK4 0x00000000
+#define F0(x,y,z)   ( (x) ^ (y) ^ (z) )
+#define F1(x,y,z)   ( ((x) & (y)) | (~(x) & (z)) )
+#define F2(x,y,z)   ( ((x) | ~(y)) ^ (z) )
+#define F3(x,y,z)   ( ((x) & (z)) | ((y) & ~(z)) )
+#define F4(x,y,z)   ( (x) ^ ((y) | ~(z)) )
+#define R(a,b,c,d,e,f,k,r,s) do { t = a + f(b,c,d) + k + x[r]; \
+          a = rol(t,s) + e;        \
+          c = rol(c,10);         \
+        } while(0)
+
+  /* left lane */
+  a = state[0];
+  b = state[1];
+  c = state[2];
+  d = state[3];
+  e = state[4];
+  R( a, b, c, d, e, F0, K0,  0, 11 );
+  R( e, a, b, c, d, F0, K0,  1, 14 );
+  R( d, e, a, b, c, F0, K0,  2, 15 );
+  R( c, d, e, a, b, F0, K0,  3, 12 );
+  R( b, c, d, e, a, F0, K0,  4,  5 );
+  R( a, b, c, d, e, F0, K0,  5,  8 );
+  R( e, a, b, c, d, F0, K0,  6,  7 );
+  R( d, e, a, b, c, F0, K0,  7,  9 );
+  R( c, d, e, a, b, F0, K0,  8, 11 );
+  R( b, c, d, e, a, F0, K0,  9, 13 );
+  R( a, b, c, d, e, F0, K0, 10, 14 );
+  R( e, a, b, c, d, F0, K0, 11, 15 );
+  R( d, e, a, b, c, F0, K0, 12,  6 );
+  R( c, d, e, a, b, F0, K0, 13,  7 );
+  R( b, c, d, e, a, F0, K0, 14,  9 );
+  R( a, b, c, d, e, F0, K0, 15,  8 );
+  R( e, a, b, c, d, F1, K1,  7,  7 );
+  R( d, e, a, b, c, F1, K1,  4,  6 );
+  R( c, d, e, a, b, F1, K1, 13,  8 );
+  R( b, c, d, e, a, F1, K1,  1, 13 );
+  R( a, b, c, d, e, F1, K1, 10, 11 );
+  R( e, a, b, c, d, F1, K1,  6,  9 );
+  R( d, e, a, b, c, F1, K1, 15,  7 );
+  R( c, d, e, a, b, F1, K1,  3, 15 );
+  R( b, c, d, e, a, F1, K1, 12,  7 );
+  R( a, b, c, d, e, F1, K1,  0, 12 );
+  R( e, a, b, c, d, F1, K1,  9, 15 );
+  R( d, e, a, b, c, F1, K1,  5,  9 );
+  R( c, d, e, a, b, F1, K1,  2, 11 );
+  R( b, c, d, e, a, F1, K1, 14,  7 );
+  R( a, b, c, d, e, F1, K1, 11, 13 );
+  R( e, a, b, c, d, F1, K1,  8, 12 );
+  R( d, e, a, b, c, F2, K2,  3, 11 );
+  R( c, d, e, a, b, F2, K2, 10, 13 );
+  R( b, c, d, e, a, F2, K2, 14,  6 );
+  R( a, b, c, d, e, F2, K2,  4,  7 );
+  R( e, a, b, c, d, F2, K2,  9, 14 );
+  R( d, e, a, b, c, F2, K2, 15,  9 );
+  R( c, d, e, a, b, F2, K2,  8, 13 );
+  R( b, c, d, e, a, F2, K2,  1, 15 );
+  R( a, b, c, d, e, F2, K2,  2, 14 );
+  R( e, a, b, c, d, F2, K2,  7,  8 );
+  R( d, e, a, b, c, F2, K2,  0, 13 );
+  R( c, d, e, a, b, F2, K2,  6,  6 );
+  R( b, c, d, e, a, F2, K2, 13,  5 );
+  R( a, b, c, d, e, F2, K2, 11, 12 );
+  R( e, a, b, c, d, F2, K2,  5,  7 );
+  R( d, e, a, b, c, F2, K2, 12,  5 );
+  R( c, d, e, a, b, F3, K3,  1, 11 );
+  R( b, c, d, e, a, F3, K3,  9, 12 );
+  R( a, b, c, d, e, F3, K3, 11, 14 );
+  R( e, a, b, c, d, F3, K3, 10, 15 );
+  R( d, e, a, b, c, F3, K3,  0, 14 );
+  R( c, d, e, a, b, F3, K3,  8, 15 );
+  R( b, c, d, e, a, F3, K3, 12,  9 );
+  R( a, b, c, d, e, F3, K3,  4,  8 );
+  R( e, a, b, c, d, F3, K3, 13,  9 );
+  R( d, e, a, b, c, F3, K3,  3, 14 );
+  R( c, d, e, a, b, F3, K3,  7,  5 );
+  R( b, c, d, e, a, F3, K3, 15,  6 );
+  R( a, b, c, d, e, F3, K3, 14,  8 );
+  R( e, a, b, c, d, F3, K3,  5,  6 );
+  R( d, e, a, b, c, F3, K3,  6,  5 );
+  R( c, d, e, a, b, F3, K3,  2, 12 );
+  R( b, c, d, e, a, F4, K4,  4,  9 );
+  R( a, b, c, d, e, F4, K4,  0, 15 );
+  R( e, a, b, c, d, F4, K4,  5,  5 );
+  R( d, e, a, b, c, F4, K4,  9, 11 );
+  R( c, d, e, a, b, F4, K4,  7,  6 );
+  R( b, c, d, e, a, F4, K4, 12,  8 );
+  R( a, b, c, d, e, F4, K4,  2, 13 );
+  R( e, a, b, c, d, F4, K4, 10, 12 );
+  R( d, e, a, b, c, F4, K4, 14,  5 );
+  R( c, d, e, a, b, F4, K4,  1, 12 );
+  R( b, c, d, e, a, F4, K4,  3, 13 );
+  R( a, b, c, d, e, F4, K4,  8, 14 );
+  R( e, a, b, c, d, F4, K4, 11, 11 );
+  R( d, e, a, b, c, F4, K4,  6,  8 );
+  R( c, d, e, a, b, F4, K4, 15,  5 );
+  R( b, c, d, e, a, F4, K4, 13,  6 );
+
+  aa = a; bb = b; cc = c; dd = d; ee = e;
+
+  /* right lane */
+  a = state[0];
+  b = state[1];
+  c = state[2];
+  d = state[3];
+  e = state[4];
+  R( a, b, c, d, e, F4, KK0,  5,  8);
+  R( e, a, b, c, d, F4, KK0, 14,  9);
+  R( d, e, a, b, c, F4, KK0,  7,  9);
+  R( c, d, e, a, b, F4, KK0,  0, 11);
+  R( b, c, d, e, a, F4, KK0,  9, 13);
+  R( a, b, c, d, e, F4, KK0,  2, 15);
+  R( e, a, b, c, d, F4, KK0, 11, 15);
+  R( d, e, a, b, c, F4, KK0,  4,  5);
+  R( c, d, e, a, b, F4, KK0, 13,  7);
+  R( b, c, d, e, a, F4, KK0,  6,  7);
+  R( a, b, c, d, e, F4, KK0, 15,  8);
+  R( e, a, b, c, d, F4, KK0,  8, 11);
+  R( d, e, a, b, c, F4, KK0,  1, 14);
+  R( c, d, e, a, b, F4, KK0, 10, 14);
+  R( b, c, d, e, a, F4, KK0,  3, 12);
+  R( a, b, c, d, e, F4, KK0, 12,  6);
+  R( e, a, b, c, d, F3, KK1,  6,  9);
+  R( d, e, a, b, c, F3, KK1, 11, 13);
+  R( c, d, e, a, b, F3, KK1,  3, 15);
+  R( b, c, d, e, a, F3, KK1,  7,  7);
+  R( a, b, c, d, e, F3, KK1,  0, 12);
+  R( e, a, b, c, d, F3, KK1, 13,  8);
+  R( d, e, a, b, c, F3, KK1,  5,  9);
+  R( c, d, e, a, b, F3, KK1, 10, 11);
+  R( b, c, d, e, a, F3, KK1, 14,  7);
+  R( a, b, c, d, e, F3, KK1, 15,  7);
+  R( e, a, b, c, d, F3, KK1,  8, 12);
+  R( d, e, a, b, c, F3, KK1, 12,  7);
+  R( c, d, e, a, b, F3, KK1,  4,  6);
+  R( b, c, d, e, a, F3, KK1,  9, 15);
+  R( a, b, c, d, e, F3, KK1,  1, 13);
+  R( e, a, b, c, d, F3, KK1,  2, 11);
+  R( d, e, a, b, c, F2, KK2, 15,  9);
+  R( c, d, e, a, b, F2, KK2,  5,  7);
+  R( b, c, d, e, a, F2, KK2,  1, 15);
+  R( a, b, c, d, e, F2, KK2,  3, 11);
+  R( e, a, b, c, d, F2, KK2,  7,  8);
+  R( d, e, a, b, c, F2, KK2, 14,  6);
+  R( c, d, e, a, b, F2, KK2,  6,  6);
+  R( b, c, d, e, a, F2, KK2,  9, 14);
+  R( a, b, c, d, e, F2, KK2, 11, 12);
+  R( e, a, b, c, d, F2, KK2,  8, 13);
+  R( d, e, a, b, c, F2, KK2, 12,  5);
+  R( c, d, e, a, b, F2, KK2,  2, 14);
+  R( b, c, d, e, a, F2, KK2, 10, 13);
+  R( a, b, c, d, e, F2, KK2,  0, 13);
+  R( e, a, b, c, d, F2, KK2,  4,  7);
+  R( d, e, a, b, c, F2, KK2, 13,  5);
+  R( c, d, e, a, b, F1, KK3,  8, 15);
+  R( b, c, d, e, a, F1, KK3,  6,  5);
+  R( a, b, c, d, e, F1, KK3,  4,  8);
+  R( e, a, b, c, d, F1, KK3,  1, 11);
+  R( d, e, a, b, c, F1, KK3,  3, 14);
+  R( c, d, e, a, b, F1, KK3, 11, 14);
+  R( b, c, d, e, a, F1, KK3, 15,  6);
+  R( a, b, c, d, e, F1, KK3,  0, 14);
+  R( e, a, b, c, d, F1, KK3,  5,  6);
+  R( d, e, a, b, c, F1, KK3, 12,  9);
+  R( c, d, e, a, b, F1, KK3,  2, 12);
+  R( b, c, d, e, a, F1, KK3, 13,  9);
+  R( a, b, c, d, e, F1, KK3,  9, 12);
+  R( e, a, b, c, d, F1, KK3,  7,  5);
+  R( d, e, a, b, c, F1, KK3, 10, 15);
+  R( c, d, e, a, b, F1, KK3, 14,  8);
+  R( b, c, d, e, a, F0, KK4, 12,  8);
+  R( a, b, c, d, e, F0, KK4, 15,  5);
+  R( e, a, b, c, d, F0, KK4, 10, 12);
+  R( d, e, a, b, c, F0, KK4,  4,  9);
+  R( c, d, e, a, b, F0, KK4,  1, 12);
+  R( b, c, d, e, a, F0, KK4,  5,  5);
+  R( a, b, c, d, e, F0, KK4,  8, 14);
+  R( e, a, b, c, d, F0, KK4,  7,  6);
+  R( d, e, a, b, c, F0, KK4,  6,  8);
+  R( c, d, e, a, b, F0, KK4,  2, 13);
+  R( b, c, d, e, a, F0, KK4, 13,  6);
+  R( a, b, c, d, e, F0, KK4, 14,  5);
+  R( e, a, b, c, d, F0, KK4,  0, 15);
+  R( d, e, a, b, c, F0, KK4,  3, 13);
+  R( c, d, e, a, b, F0, KK4,  9, 11);
+  R( b, c, d, e, a, F0, KK4, 11, 11);
+
+
+  t    = state[1] + d + cc;
+  state[1] = state[2] + e + dd;
+  state[2] = state[3] + a + ee;
+  state[3] = state[4] + b + aa;
+  state[4] = state[0] + c + bb;
+  state[0] = t;
+}
diff --git a/rmd160-meta.c b/rmd160-meta.c
new file mode 100644
index 0000000..2054dac
--- /dev/null
+++ b/rmd160-meta.c
@@ -0,0 +1,32 @@
+/* rmd160-meta.c */
+
+/* nettle, low-level cryptographics library
+ *
+ * Copyright (C) 2002 Niels Möller
+ *
+ * The nettle library is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or (at your
+ * option) any later version.
+ *
+ * The nettle library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
+ * License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with the nettle library; see the file COPYING.LIB.  If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+ * MA 02111-1307, USA.
+ */
+
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include "nettle-meta.h"
+
+#include "rmd.h"
+
+const struct nettle_hash nettle_rmd160
+= _NETTLE_HASH(rmd160, RMD160);
diff --git a/rmd160.c b/rmd160.c
new file mode 100644
index 0000000..71064a5
--- /dev/null
+++ b/rmd160.c
@@ -0,0 +1,257 @@
+/* rmd160.c  -  RIPE-MD160
+ * Copyright (C) 1998, 2001, 2002, 2003 Free Software Foundation, Inc.
+ *
+ * The nettle library is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or (at your
+ * option) any later version.
+ *
+ * The nettle library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
+ * License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with the nettle library; see the file COPYING.LIB.  If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+ * MA 02111-1307, USA.
+ */
+
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+#include <string.h>
+#include <assert.h>
+
+#include "rmd.h"
+
+/*********************************
+ * RIPEMD-160 is not patented, see (as of 25.10.97)
+ *   http://www.esat.kuleuven.ac.be/~bosselae/ripemd160.html
+ * Note that the code uses Little Endian byteorder, which is good for
+ * 386 etc, but we must add some conversion when used on a big endian box.
+ *
+ *
+ * Pseudo-code for RIPEMD-160
+ *
+ * RIPEMD-160 is an iterative hash function that operates on 32-bit words.
+ * The round function takes as input a 5-word chaining variable and a 16-word
+ * message block and maps this to a new chaining variable. All operations are
+ * defined on 32-bit words. Padding is identical to that of MD4.
+ *
+ *
+ * RIPEMD-160: definitions
+ *
+ *
+ *   nonlinear functions at bit level: exor, mux, -, mux, -
+ *
+ *   f(j, x, y, z) = x XOR y XOR z      (0 <= j <= 15)
+ *   f(j, x, y, z) = (x AND y) OR (NOT(x) AND z)  (16 <= j <= 31)
+ *   f(j, x, y, z) = (x OR NOT(y)) XOR z    (32 <= j <= 47)
+ *   f(j, x, y, z) = (x AND z) OR (y AND NOT(z))  (48 <= j <= 63)
+ *   f(j, x, y, z) = x XOR (y OR NOT(z))    (64 <= j <= 79)
+ *
+ *
+ *   added constants (hexadecimal)
+ *
+ *   K(j) = 0x00000000      (0 <= j <= 15)
+ *   K(j) = 0x5A827999     (16 <= j <= 31)  int(2**30 x sqrt(2))
+ *   K(j) = 0x6ED9EBA1     (32 <= j <= 47)  int(2**30 x sqrt(3))
+ *   K(j) = 0x8F1BBCDC     (48 <= j <= 63)  int(2**30 x sqrt(5))
+ *   K(j) = 0xA953FD4E     (64 <= j <= 79)  int(2**30 x sqrt(7))
+ *   K'(j) = 0x50A28BE6     (0 <= j <= 15)      int(2**30 x cbrt(2))
+ *   K'(j) = 0x5C4DD124    (16 <= j <= 31)      int(2**30 x cbrt(3))
+ *   K'(j) = 0x6D703EF3    (32 <= j <= 47)      int(2**30 x cbrt(5))
+ *   K'(j) = 0x7A6D76E9    (48 <= j <= 63)      int(2**30 x cbrt(7))
+ *   K'(j) = 0x00000000    (64 <= j <= 79)
+ *
+ *
+ *   selection of message word
+ *
+ *   r(j)      = j          (0 <= j <= 15)
+ *   r(16..31) = 7, 4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8
+ *   r(32..47) = 3, 10, 14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12
+ *   r(48..63) = 1, 9, 11, 10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2
+ *   r(64..79) = 4, 0, 5, 9, 7, 12, 2, 10, 14, 1, 3, 8, 11, 6, 15, 13
+ *   r0(0..15) = 5, 14, 7, 0, 9, 2, 11, 4, 13, 6, 15, 8, 1, 10, 3, 12
+ *   r0(16..31)= 6, 11, 3, 7, 0, 13, 5, 10, 14, 15, 8, 12, 4, 9, 1, 2
+ *   r0(32..47)= 15, 5, 1, 3, 7, 14, 6, 9, 11, 8, 12, 2, 10, 0, 4, 13
+ *   r0(48..63)= 8, 6, 4, 1, 3, 11, 15, 0, 5, 12, 2, 13, 9, 7, 10, 14
+ *   r0(64..79)= 12, 15, 10, 4, 1, 5, 8, 7, 6, 2, 13, 14, 0, 3, 9, 11
+ *
+ *
+ *   amount for rotate left (rol)
+ *
+ *   s(0..15)  = 11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8
+ *   s(16..31) = 7, 6, 8, 13, 11, 9, 7, 15, 7, 12, 15, 9, 11, 7, 13, 12
+ *   s(32..47) = 11, 13, 6, 7, 14, 9, 13, 15, 14, 8, 13, 6, 5, 12, 7, 5
+ *   s(48..63) = 11, 12, 14, 15, 14, 15, 9, 8, 9, 14, 5, 6, 8, 6, 5, 12
+ *   s(64..79) = 9, 15, 5, 11, 6, 8, 13, 12, 5, 12, 13, 14, 11, 8, 5, 6
+ *   s'(0..15) = 8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6
+ *   s'(16..31)= 9, 13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11
+ *   s'(32..47)= 9, 7, 15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5
+ *   s'(48..63)= 15, 5, 8, 11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8
+ *   s'(64..79)= 8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11
+ *
+ *
+ *   initial value (hexadecimal)
+ *
+ *   h0 = 0x67452301; h1 = 0xEFCDAB89; h2 = 0x98BADCFE; h3 = 0x10325476;
+ *              h4 = 0xC3D2E1F0;
+ *
+ *
+ * RIPEMD-160: pseudo-code
+ *
+ *   It is assumed that the message after padding consists of t 16-word blocks
+ *   that will be denoted with X[i][j], with 0 <= i <= t-1 and 0 <= j <= 15.
+ *   The symbol [+] denotes addition modulo 2**32 and rol_s denotes cyclic left
+ *   shift (rotate) over s positions.
+ *
+ *
+ *   for i := 0 to t-1 {
+ *   A := h0; B := h1; C := h2; D = h3; E = h4;
+ *   A' := h0; B' := h1; C' := h2; D' = h3; E' = h4;
+ *   for j := 0 to 79 {
+ *       T := rol_s(j)(A [+] f(j, B, C, D) [+] X[i][r(j)] [+] K(j)) [+] E;
+ *       A := E; E := D; D := rol_10(C); C := B; B := T;
+ *       T := rol_s'(j)(A' [+] f(79-j, B', C', D') [+] X[i][r'(j)]
+                   [+] K'(j)) [+] E';
+ *       A' := E'; E' := D'; D' := rol_10(C'); C' := B'; B' := T;
+ *   }
+ *   T := h1 [+] C [+] D'; h1 := h2 [+] D [+] E'; h2 := h3 [+] E [+] A';
+ *   h3 := h4 [+] A [+] B'; h4 := h0 [+] B [+] C'; h0 := T;
+ *   }
+ */
+
+/* Some examples:
+ * ""                    9c1185a5c5e9fc54612808977ee8f548b2258d31
+ * "a"                   0bdc9d2d256b3ee9daae347be6f4dc835a467ffe
+ * "abc"                 8eb208f7e05d987a9b044a8e98c6b087f15a0bfc
+ * "message digest"      5d0689ef49d2fae572b881b123a85ffa21595f36
+ * "a...z"               f71c27109c692c1b56bbdceb5b9d2865b3708dbc
+ * "abcdbcde...nopq"     12a053384a9c0c88e405a06c27dcf49ada62eb2b
+ * "A...Za...z0...9"     b0e20b6e3116640286ed3a87a5713079b21f5189
+ * 8 times "1234567890"  9b752e45573d4b39f4dbd3323cab82bf63326bfb
+ * 1 million times "a"   52783243c1697bdbe16d37f97f68f08325dc1528
+ */
+
+void
+rmd160_init(struct rmd160_ctx *ctx)
+{
+  ctx->digest[0] = 0x67452301;
+  ctx->digest[1] = 0xEFCDAB89;
+  ctx->digest[2] = 0x98BADCFE;
+  ctx->digest[3] = 0x10325476;
+  ctx->digest[4] = 0xC3D2E1F0;
+  memset(&ctx->block, 0, sizeof(ctx->block));
+  ctx->nblocks = 0;
+  ctx->index = 0;
+}
+
+/* Update the message digest with the contents
+ * of DATA with length LENGTH.
+ */
+void
+rmd160_update(struct rmd160_ctx *ctx, unsigned length, const uint8_t *data)
+{
+  if(ctx->index == 64)  /* flush the buffer */
+  {
+    _nettle_rmd160_compress(ctx->digest, ctx->block);
+    ctx->index = 0;
+    ctx->nblocks++;
+  }
+  if(!data)
+    return;
+  if(ctx->index)
+  {
+    for(; length && ctx->index < 64; length--)
+      ctx->block[ctx->index++] = *data++;
+    rmd160_update(ctx, 0, NULL);
+    if(!length)
+      return;
+  }
+
+  while( length >= 64 )
+  {
+    _nettle_rmd160_compress(ctx->digest, data);
+    ctx->index = 0;
+    ctx->nblocks++;
+    length -= 64;
+    data += 64;
+  }
+  for(; length && ctx->index < 64; length--)
+    ctx->block[ctx->index++] = *data++;
+}
+
+/* The routine terminates the computation */
+static void
+rmd160_final(struct rmd160_ctx *ctx)
+{
+  uint32_t t, msb, lsb;
+  uint8_t *p;
+
+  rmd160_update(ctx, 0, NULL); /* flush */;
+
+  t = ctx->nblocks;
+  /* multiply by 64 to make a byte count */
+  lsb = t << 6;
+  msb = t >> 26;
+  /* add the count */
+  t = lsb;
+  if( (lsb += ctx->index) < t )
+    msb++;
+  /* multiply by 8 to make a bit count */
+  t = lsb;
+  lsb <<= 3;
+  msb <<= 3;
+  msb |= t >> 29;
+
+  if( ctx->index < 56 )  /* enough room */
+  {
+    ctx->block[ctx->index++] = 0x80; /* pad */
+    while( ctx->index < 56 )
+      ctx->block[ctx->index++] = 0;  /* pad */
+  }
+  else  /* need one extra block */
+  {
+    ctx->block[ctx->index++] = 0x80; /* pad character */
+    while( ctx->index < 64 )
+      ctx->block[ctx->index++] = 0;
+    rmd160_update(ctx, 0, NULL);  /* flush */;
+    memset(ctx->block, 0, 56 ); /* fill next block with zeroes */
+  }
+  /* append the 64 bit count */
+  ctx->block[56] = lsb;
+  ctx->block[57] = lsb >>  8;
+  ctx->block[58] = lsb >> 16;
+  ctx->block[59] = lsb >> 24;
+  ctx->block[60] = msb;
+  ctx->block[61] = msb >>  8;
+  ctx->block[62] = msb >> 16;
+  ctx->block[63] = msb >> 24;
+  _nettle_rmd160_compress(ctx->digest, ctx->block);
+
+  p = ctx->block;
+#ifdef WORDS_BIGENDIAN
+#define X(a) do { *p++ = ctx->digest[a]    ; *p++ = ctx->digest[a] >> 8; \
+  *p++ = ctx->digest[a] >> 16; *p++ = ctx->digest[a] >> 24; } while(0)
+#else /* little endian */
+#define X(a) do { *(uint32_t*)p = ctx->digest[a] ; p += 4; } while(0)
+#endif
+  X(0);
+  X(1);
+  X(2);
+  X(3);
+  X(4);
+#undef X
+}
+
+void
+rmd160_digest(struct rmd160_ctx *ctx, unsigned length, uint8_t *digest)
+{
+  assert(length <= RMD160_DIGEST_SIZE);
+
+  rmd160_final(ctx);
+  memcpy(digest, ctx->block, length);
+  rmd160_init(ctx);
+}
diff --git a/testsuite/Makefile.in b/testsuite/Makefile.in
index 8a263cb..ce949d5 100644
--- a/testsuite/Makefile.in
+++ b/testsuite/Makefile.in
@@ -17,6 +17,7 @@ TS_NETTLE_SOURCES = aes-test.c arcfour-test.c arctwo-test.c \
 		    des-test.c des3-test.c des-compat-test.c \
 		    md2-test.c md4-test.c md5-test.c md5-compat-test.c \
 		    memxor-test.c \
+		    rmd160-test.c \
 		    sha1-test.c sha224-test.c sha256-test.c \
 		    sha384-test.c sha512-test.c \
 		    serpent-test.c twofish-test.c \
diff --git a/testsuite/rmd160-test.c b/testsuite/rmd160-test.c
new file mode 100644
index 0000000..3be9e70
--- /dev/null
+++ b/testsuite/rmd160-test.c
@@ -0,0 +1,37 @@
+#include "testutils.h"
+#include "rmd.h"
+
+int
+test_main(void)
+{
+  test_hash(&nettle_rmd160, 0, "",
+      H("9c1185a5c5e9fc54612808977ee8f548b2258d31"));
+
+  test_hash(&nettle_rmd160, 1, "a",
+      H("0bdc9d2d256b3ee9daae347be6f4dc835a467ffe"));
+
+  test_hash(&nettle_rmd160, 3, "abc",
+      H("8eb208f7e05d987a9b044a8e98c6b087f15a0bfc"));
+
+  test_hash(&nettle_rmd160, 26, "abcdefghijklmnopqrstuvwxyz",
+      H("f71c27109c692c1b56bbdceb5b9d2865b3708dbc"));
+
+  test_hash(&nettle_rmd160, 14, "message digest",
+      H("5d0689ef49d2fae572b881b123a85ffa21595f36"));
+
+  test_hash(&nettle_rmd160, 62,
+      "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+      "abcdefghijklmnopqrstuvwxyz0123456789",
+      H("b0e20b6e3116640286ed3a87a5713079b21f5189"));
+
+  test_hash(&nettle_rmd160,  80,
+      "1234567890123456789012345678901234567890"
+      "1234567890123456789012345678901234567890",
+      H("9b752e45573d4b39f4dbd3323cab82bf63326bfb"));
+
+  /* Additional test vector, from Daniel Kahn Gillmor */
+  test_hash(&nettle_rmd160, LDATA("38"),
+      H("6b2d075b1cd34cd1c3e43a995f110c55649dad0e"));
+
+  SUCCESS();
+}
_______________________________________________
nettle-bugs mailing list
[email protected]
http://lists.lysator.liu.se/mailman/listinfo/nettle-bugs

Reply via email to