X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/1c64c8e2eafc1085d80485dc5104a73818373773..80be023065ced106a4078a36371c135a60d2bd6c:/rmd256.c diff --git a/rmd256.c b/rmd256.c index fe6f4c1..e545436 100644 --- a/rmd256.c +++ b/rmd256.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: rmd256.c,v 1.1 2000/07/09 21:30:31 mdw Exp $ + * $Id: rmd256.c,v 1.3 2004/04/08 01:36:15 mdw Exp $ * * The RIPEMD-256 message digest function * @@ -27,14 +27,6 @@ * MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: rmd256.c,v $ - * Revision 1.1 2000/07/09 21:30:31 mdw - * New RIPEMD variants. - * - */ - /*----- Header files ------------------------------------------------------*/ #include @@ -105,7 +97,7 @@ void rmd256_compress(rmd256_ctx *ctx, const void *sbuf) #define H2(w, x, y, z, i, r) T(w, x, y, z, i, r, G, 0x6d703ef3) #define I2(w, x, y, z, i, r) T(w, x, y, z, i, r, F, 0x00000000) - /* --- First the left hand side --- */ + /* --- We must do both sides together --- */ F1(a, b, c, d, 0, 11); F1(d, a, b, c, 1, 14);