Commit 8bede7d6 authored by Rusty Russell's avatar Rusty Russell

Merge remote-tracking branch 'origin/pr/45'

Closes: 45
parents 578c4bfb 86769a9a
......@@ -282,7 +282,7 @@ static void add(struct ripemd160_ctx *ctx, const void *p, size_t len)
size_t bufsize = ctx->bytes % 64;
if (bufsize + len >= 64) {
// Fill the buffer, and process it.
/* Fill the buffer, and process it. */
memcpy(ctx->buf.u8 + bufsize, data, 64 - bufsize);
ctx->bytes += 64 - bufsize;
data += 64 - bufsize;
......@@ -292,7 +292,7 @@ static void add(struct ripemd160_ctx *ctx, const void *p, size_t len)
}
while (len >= 64) {
// Process full chunks directly from the source.
/* Process full chunks directly from the source. */
if (alignment_ok(data, sizeof(uint32_t)))
Transform(ctx->s, (const uint32_t *)data);
else {
......@@ -305,7 +305,7 @@ static void add(struct ripemd160_ctx *ctx, const void *p, size_t len)
}
if (len) {
// Fill the buffer with what remains.
/* Fill the buffer with what remains. */
memcpy(ctx->buf.u8 + bufsize, data, len);
ctx->bytes += len;
}
......
......@@ -6,7 +6,7 @@
#include <stdlib.h>
/* Uncomment this to use openssl's RIPEMD160 routines (and link with -lcrypto) */
//#define CCAN_CRYPTO_RIPEMD160_USE_OPENSSL 1
/*#define CCAN_CRYPTO_RIPEMD160_USE_OPENSSL 1*/
#ifdef CCAN_CRYPTO_RIPEMD160_USE_OPENSSL
#include <openssl/ripemd.h>
......
......@@ -37,7 +37,7 @@ int main(int argc, char *argv[])
memset(&block, 0, sizeof(block));
sha256(&block.h, &n, sizeof(n));
block.u8[sizeof(block.h)] = 0x80;
// Size is 256 bits
/* Size is 256 bits */
block.u8[sizeof(block)-2] = 1;
start = time_now();
......
......@@ -181,7 +181,7 @@ static void add(struct sha256_ctx *ctx, const void *p, size_t len)
size_t bufsize = ctx->bytes % 64;
if (bufsize + len >= 64) {
// Fill the buffer, and process it.
/* Fill the buffer, and process it. */
memcpy(ctx->buf.u8 + bufsize, data, 64 - bufsize);
ctx->bytes += 64 - bufsize;
data += 64 - bufsize;
......@@ -191,7 +191,7 @@ static void add(struct sha256_ctx *ctx, const void *p, size_t len)
}
while (len >= 64) {
// Process full chunks directly from the source.
/* Process full chunks directly from the source. */
if (alignment_ok(data, sizeof(uint32_t)))
Transform(ctx->s, (const uint32_t *)data);
else {
......@@ -204,7 +204,7 @@ static void add(struct sha256_ctx *ctx, const void *p, size_t len)
}
if (len) {
// Fill the buffer with what remains.
/* Fill the buffer with what remains. */
memcpy(ctx->buf.u8 + bufsize, data, len);
ctx->bytes += len;
}
......
......@@ -6,7 +6,7 @@
#include <stdlib.h>
/* Uncomment this to use openssl's SHA256 routines (and link with -lcrypto) */
//#define CCAN_CRYPTO_SHA256_USE_OPENSSL 1
/*#define CCAN_CRYPTO_SHA256_USE_OPENSSL 1*/
#ifdef CCAN_CRYPTO_SHA256_USE_OPENSSL
#include <openssl/sha.h>
......@@ -82,7 +82,7 @@ void sha256_init(struct sha256_ctx *ctx);
/**
* SHA256_INIT - initializer for an SHA256 context.
*
* This can be used to staticly initialize an SHA256 context (instead
* This can be used to statically initialize an SHA256 context (instead
* of sha256_init()).
*
* Example:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment