expose_ripemd160.patch 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
  2. From: Jeremy Apthorp <[email protected]>
  3. Date: Fri, 18 Jan 2019 13:56:52 -0800
  4. Subject: expose ripemd160
  5. This adds references to the decrepit/ module from non-decrepit source,
  6. which is not allowed in upstream. Until upstream has a way to interface
  7. with node.js that allows exposing additional digests without patching,
  8. this patch is required to provide ripemd160 support in the nodejs crypto
  9. module.
  10. diff --git a/crypto/digest_extra/digest_extra.c b/crypto/digest_extra/digest_extra.c
  11. index 8cbb28e3afde3dbae3887b22e8b607fa7303e89f..32caba196eb9f0823f774dac9e91314035b3ff7f 100644
  12. --- a/crypto/digest_extra/digest_extra.c
  13. +++ b/crypto/digest_extra/digest_extra.c
  14. @@ -85,6 +85,7 @@ static const struct nid_to_digest nid_to_digest_mapping[] = {
  15. {NID_sha512, EVP_sha512, SN_sha512, LN_sha512},
  16. {NID_sha512_256, EVP_sha512_256, SN_sha512_256, LN_sha512_256},
  17. {NID_md5_sha1, EVP_md5_sha1, SN_md5_sha1, LN_md5_sha1},
  18. + {NID_ripemd160, EVP_ripemd160, SN_ripemd160, LN_ripemd160},
  19. // As a remnant of signing |EVP_MD|s, OpenSSL returned the corresponding
  20. // hash function when given a signature OID. To avoid unintended lax parsing
  21. // of hash OIDs, this is no longer supported for lookup by OID or NID.
  22. diff --git a/crypto/fipsmodule/digest/digests.c b/crypto/fipsmodule/digest/digests.c
  23. index f006ebbc53eea78ce0337a076a05285f22da7a18..7b9309f39a2e5dc6e61bb89e5d32b1766165f5a7 100644
  24. --- a/crypto/fipsmodule/digest/digests.c
  25. +++ b/crypto/fipsmodule/digest/digests.c
  26. @@ -63,6 +63,7 @@
  27. #include <openssl/md5.h>
  28. #include <openssl/nid.h>
  29. #include <openssl/sha.h>
  30. +#include <openssl/ripemd.h>
  31. #include "internal.h"
  32. #include "../delocate.h"
  33. @@ -301,4 +302,27 @@ DEFINE_METHOD_FUNCTION(EVP_MD, EVP_md5_sha1) {
  34. out->ctx_size = sizeof(MD5_SHA1_CTX);
  35. }
  36. +static void ripemd160_init(EVP_MD_CTX *ctx) {
  37. + CHECK(RIPEMD160_Init(ctx->md_data));
  38. +}
  39. +
  40. +static void ripemd160_update(EVP_MD_CTX *ctx, const void *data, size_t count) {
  41. + CHECK(RIPEMD160_Update(ctx->md_data, data, count));
  42. +}
  43. +
  44. +static void ripemd160_final(EVP_MD_CTX *ctx, uint8_t *md) {
  45. + CHECK(RIPEMD160_Final(md, ctx->md_data));
  46. +}
  47. +
  48. +DEFINE_METHOD_FUNCTION(EVP_MD, EVP_ripemd160) {
  49. + out->type = NID_ripemd160;
  50. + out->md_size = RIPEMD160_DIGEST_LENGTH;
  51. + out->flags = 0;
  52. + out->init = ripemd160_init;
  53. + out->update = ripemd160_update;
  54. + out->final = ripemd160_final;
  55. + out->block_size = 64;
  56. + out->ctx_size = sizeof(RIPEMD160_CTX);
  57. +}
  58. +
  59. #undef CHECK
  60. diff --git a/decrepit/evp/evp_do_all.c b/decrepit/evp/evp_do_all.c
  61. index a3fb077b9b9e66d1bc524fd7987622e73aa4776a..852b76bea69988e0b3ac76a17b603128f239dde0 100644
  62. --- a/decrepit/evp/evp_do_all.c
  63. +++ b/decrepit/evp/evp_do_all.c
  64. @@ -79,6 +79,7 @@ void EVP_MD_do_all_sorted(void (*callback)(const EVP_MD *cipher,
  65. callback(EVP_sha384(), "SHA384", NULL, arg);
  66. callback(EVP_sha512(), "SHA512", NULL, arg);
  67. callback(EVP_sha512_256(), "SHA512-256", NULL, arg);
  68. + callback(EVP_ripemd160(), "ripemd160", NULL, arg);
  69. callback(EVP_md4(), "md4", NULL, arg);
  70. callback(EVP_md5(), "md5", NULL, arg);
  71. @@ -88,6 +89,7 @@ void EVP_MD_do_all_sorted(void (*callback)(const EVP_MD *cipher,
  72. callback(EVP_sha384(), "sha384", NULL, arg);
  73. callback(EVP_sha512(), "sha512", NULL, arg);
  74. callback(EVP_sha512_256(), "sha512-256", NULL, arg);
  75. + callback(EVP_ripemd160(), "ripemd160", NULL, arg);
  76. }
  77. void EVP_MD_do_all(void (*callback)(const EVP_MD *cipher, const char *name,
  78. diff --git a/include/openssl/digest.h b/include/openssl/digest.h
  79. index 6e889993edc1caa7e10670529dd270c337b5ae4c..f61f7e5009a9b4f5630cda2c3a5a21b44e5b88d8 100644
  80. --- a/include/openssl/digest.h
  81. +++ b/include/openssl/digest.h
  82. @@ -90,6 +90,9 @@ OPENSSL_EXPORT const EVP_MD *EVP_blake2b256(void);
  83. // MD5 and SHA-1, as used in TLS 1.1 and below.
  84. OPENSSL_EXPORT const EVP_MD *EVP_md5_sha1(void);
  85. +// EVP_ripemd160 is in decrepit and not available by default.
  86. +OPENSSL_EXPORT const EVP_MD *EVP_ripemd160(void);
  87. +
  88. // EVP_get_digestbynid returns an |EVP_MD| for the given NID, or NULL if no
  89. // such digest is known.
  90. OPENSSL_EXPORT const EVP_MD *EVP_get_digestbynid(int nid);