2019-01-28 21:36:51 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jeremy Apthorp <nornagon@nornagon.net>
|
|
|
|
Date: Fri, 18 Jan 2019 13:56:52 -0800
|
|
|
|
Subject: expose ripemd160
|
|
|
|
|
|
|
|
This adds references to the decrepit/ module from non-decrepit source,
|
|
|
|
which is not allowed in upstream. Until upstream has a way to interface
|
|
|
|
with node.js that allows exposing additional digests without patching,
|
|
|
|
this patch is required to provide ripemd160 support in the nodejs crypto
|
|
|
|
module.
|
|
|
|
|
|
|
|
diff --git a/crypto/digest_extra/digest_extra.c b/crypto/digest_extra/digest_extra.c
|
2021-08-11 21:04:56 +00:00
|
|
|
index a93601c170dc407f7d6d628fb7e2d2f0788467f3..00911ee69bb99a34b938ea6a62cd10bc930ec95c 100644
|
2019-01-28 21:36:51 +00:00
|
|
|
--- a/crypto/digest_extra/digest_extra.c
|
|
|
|
+++ b/crypto/digest_extra/digest_extra.c
|
2021-08-11 21:04:56 +00:00
|
|
|
@@ -84,6 +84,7 @@ static const struct nid_to_digest nid_to_digest_mapping[] = {
|
2019-01-28 21:36:51 +00:00
|
|
|
{NID_sha384, EVP_sha384, SN_sha384, LN_sha384},
|
|
|
|
{NID_sha512, EVP_sha512, SN_sha512, LN_sha512},
|
|
|
|
{NID_md5_sha1, EVP_md5_sha1, SN_md5_sha1, LN_md5_sha1},
|
|
|
|
+ {NID_ripemd160, EVP_ripemd160, SN_ripemd160, LN_ripemd160},
|
|
|
|
// As a remnant of signing |EVP_MD|s, OpenSSL returned the corresponding
|
|
|
|
// hash function when given a signature OID. To avoid unintended lax parsing
|
|
|
|
// of hash OIDs, this is no longer supported for lookup by OID or NID.
|
|
|
|
diff --git a/crypto/fipsmodule/digest/digests.c b/crypto/fipsmodule/digest/digests.c
|
2021-04-27 21:27:34 +00:00
|
|
|
index f006ebbc53eea78ce0337a076a05285f22da7a18..7b9309f39a2e5dc6e61bb89e5d32b1766165f5a7 100644
|
2019-01-28 21:36:51 +00:00
|
|
|
--- a/crypto/fipsmodule/digest/digests.c
|
|
|
|
+++ b/crypto/fipsmodule/digest/digests.c
|
|
|
|
@@ -63,6 +63,7 @@
|
|
|
|
#include <openssl/md5.h>
|
|
|
|
#include <openssl/nid.h>
|
|
|
|
#include <openssl/sha.h>
|
|
|
|
+#include <openssl/ripemd.h>
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
#include "../delocate.h"
|
2021-04-27 21:27:34 +00:00
|
|
|
@@ -301,4 +302,27 @@ DEFINE_METHOD_FUNCTION(EVP_MD, EVP_md5_sha1) {
|
2019-01-28 21:36:51 +00:00
|
|
|
out->ctx_size = sizeof(MD5_SHA1_CTX);
|
|
|
|
}
|
|
|
|
|
|
|
|
+static void ripemd160_init(EVP_MD_CTX *ctx) {
|
|
|
|
+ CHECK(RIPEMD160_Init(ctx->md_data));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void ripemd160_update(EVP_MD_CTX *ctx, const void *data, size_t count) {
|
|
|
|
+ CHECK(RIPEMD160_Update(ctx->md_data, data, count));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void ripemd160_final(EVP_MD_CTX *ctx, uint8_t *md) {
|
|
|
|
+ CHECK(RIPEMD160_Final(md, ctx->md_data));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+DEFINE_METHOD_FUNCTION(EVP_MD, EVP_ripemd160) {
|
|
|
|
+ out->type = NID_ripemd160;
|
|
|
|
+ out->md_size = RIPEMD160_DIGEST_LENGTH;
|
|
|
|
+ out->flags = 0;
|
|
|
|
+ out->init = ripemd160_init;
|
|
|
|
+ out->update = ripemd160_update;
|
|
|
|
+ out->final = ripemd160_final;
|
|
|
|
+ out->block_size = 64;
|
|
|
|
+ out->ctx_size = sizeof(RIPEMD160_CTX);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
#undef CHECK
|
|
|
|
diff --git a/decrepit/evp/evp_do_all.c b/decrepit/evp/evp_do_all.c
|
2021-08-11 21:04:56 +00:00
|
|
|
index d8023e08f70a060aed083212fefd1de3ecc142e4..5a41a7b7dc9afee65d9004c497da735073715bd3 100644
|
2019-01-28 21:36:51 +00:00
|
|
|
--- a/decrepit/evp/evp_do_all.c
|
|
|
|
+++ b/decrepit/evp/evp_do_all.c
|
2019-02-14 16:30:44 +00:00
|
|
|
@@ -78,6 +78,7 @@ void EVP_MD_do_all_sorted(void (*callback)(const EVP_MD *cipher,
|
2019-01-28 21:36:51 +00:00
|
|
|
callback(EVP_sha256(), "SHA256", NULL, arg);
|
|
|
|
callback(EVP_sha384(), "SHA384", NULL, arg);
|
|
|
|
callback(EVP_sha512(), "SHA512", NULL, arg);
|
|
|
|
+ callback(EVP_ripemd160(), "RIPEMD160", NULL, arg);
|
|
|
|
|
|
|
|
callback(EVP_md4(), "md4", NULL, arg);
|
|
|
|
callback(EVP_md5(), "md5", NULL, arg);
|
2021-08-11 21:04:56 +00:00
|
|
|
@@ -86,6 +87,7 @@ void EVP_MD_do_all_sorted(void (*callback)(const EVP_MD *cipher,
|
2019-01-28 21:36:51 +00:00
|
|
|
callback(EVP_sha256(), "sha256", NULL, arg);
|
|
|
|
callback(EVP_sha384(), "sha384", NULL, arg);
|
|
|
|
callback(EVP_sha512(), "sha512", NULL, arg);
|
|
|
|
+ callback(EVP_ripemd160(), "ripemd160", NULL, arg);
|
|
|
|
}
|
2021-08-11 21:04:56 +00:00
|
|
|
|
|
|
|
void EVP_MD_do_all(void (*callback)(const EVP_MD *cipher, const char *name,
|
2019-01-28 21:36:51 +00:00
|
|
|
diff --git a/include/openssl/digest.h b/include/openssl/digest.h
|
2021-08-11 21:04:56 +00:00
|
|
|
index fa7616896b6cc7422dc0171db29316f20fb25de8..6c19a0f0d454bef1abf16ebfeef380a53fb21e5c 100644
|
2019-01-28 21:36:51 +00:00
|
|
|
--- a/include/openssl/digest.h
|
|
|
|
+++ b/include/openssl/digest.h
|
2021-03-04 17:27:05 +00:00
|
|
|
@@ -90,6 +90,9 @@ OPENSSL_EXPORT const EVP_MD *EVP_blake2b256(void);
|
2019-01-28 21:36:51 +00:00
|
|
|
// MD5 and SHA-1, as used in TLS 1.1 and below.
|
|
|
|
OPENSSL_EXPORT const EVP_MD *EVP_md5_sha1(void);
|
|
|
|
|
|
|
|
+// EVP_ripemd160 is in decrepit and not available by default.
|
|
|
|
+OPENSSL_EXPORT const EVP_MD *EVP_ripemd160(void);
|
|
|
|
+
|
|
|
|
// EVP_get_digestbynid returns an |EVP_MD| for the given NID, or NULL if no
|
|
|
|
// such digest is known.
|
|
|
|
OPENSSL_EXPORT const EVP_MD *EVP_get_digestbynid(int nid);
|