Skip to content
Snippets Groups Projects
Commit 3ba23e0a authored by Niels Möller's avatar Niels Möller
Browse files

(ripemd160_init): Use memcpy for initializing the state vector.

(COMPRESS): New macro.
(ripemd160_update): Use MD_UPDATE.
(ripemd160_digest): Inline ripemd160_final processing. Use MD_PAD
and _nettle_write_le32.
(ripemd160_final): Deleted function.

Rev: nettle/ripemd160.c:1.3
parent 8cb0fdef
No related branches found
No related tags found
No related merge requests found
...@@ -141,100 +141,48 @@ ...@@ -141,100 +141,48 @@
void void
ripemd160_init(struct ripemd160_ctx *ctx) ripemd160_init(struct ripemd160_ctx *ctx)
{ {
ctx->digest[0] = 0x67452301; static const uint32_t iv[_RIPEMD160_DIGEST_LENGTH] =
ctx->digest[1] = 0xEFCDAB89; {
ctx->digest[2] = 0x98BADCFE; 0x67452301,
ctx->digest[3] = 0x10325476; 0xEFCDAB89,
ctx->digest[4] = 0xC3D2E1F0; 0x98BADCFE,
memset(&ctx->block, 0, sizeof(ctx->block)); 0x10325476,
ctx->nblocks = 0; 0xC3D2E1F0,
};
memcpy(ctx->state, iv, sizeof(ctx->state));
ctx->count_low = ctx->count_high = 0;
ctx->index = 0; ctx->index = 0;
} }
#define COMPRESS(ctx, data) (_nettle_ripemd160_compress((ctx)->state, (data)))
/* Update the message digest with the contents /* Update the message digest with the contents
* of DATA with length LENGTH. * of DATA with length LENGTH.
*/ */
void void
ripemd160_update(struct ripemd160_ctx *ctx, unsigned length, const uint8_t *data) ripemd160_update(struct ripemd160_ctx *ctx, unsigned length, const uint8_t *data)
{ {
if(ctx->index == 64) /* flush the buffer */ MD_UPDATE(ctx, length, data, COMPRESS, MD_INCR(ctx));
{
_nettle_ripemd160_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++;
ripemd160_update(ctx, 0, NULL);
if(!length)
return;
}
while( length >= 64 )
{
_nettle_ripemd160_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 */ void
static void ripemd160_digest(struct ripemd160_ctx *ctx, unsigned length, uint8_t *digest)
ripemd160_final(struct ripemd160_ctx *ctx)
{ {
uint32_t t, msb, lsb; uint32_t high, low;
uint8_t *p;
ripemd160_update(ctx, 0, NULL); /* flush */; assert(length <= RIPEMD160_DIGEST_SIZE);
t = ctx->nblocks; MD_PAD(ctx, 8, COMPRESS);
/* 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 */ /* There are 2^9 bits in one block */
{ high = (ctx->count_high << 9) | (ctx->count_low >> 23);
ctx->block[ctx->index++] = 0x80; /* pad */ low = (ctx->count_low << 9) | (ctx->index << 3);
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;
ripemd160_update(ctx, 0, NULL); /* flush */;
memset(ctx->block, 0, 56 ); /* fill next block with zeroes */
}
/* append the 64 bit count */ /* append the 64 bit count */
LE_WRITE_UINT32(ctx->block + 56, lsb); LE_WRITE_UINT32(ctx->block + 56, low);
LE_WRITE_UINT32(ctx->block + 60, msb); LE_WRITE_UINT32(ctx->block + 60, high);
_nettle_ripemd160_compress(ctx->digest, ctx->block); _nettle_ripemd160_compress(ctx->state, ctx->block);
}
void
ripemd160_digest(struct ripemd160_ctx *ctx, unsigned length, uint8_t *digest)
{
assert(length <= RIPEMD160_DIGEST_SIZE);
ripemd160_final(ctx); _nettle_write_le32(length, digest, ctx->state);
_nettle_write_le32(length, digest, ctx->digest);
ripemd160_init(ctx); ripemd160_init(ctx);
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment