The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

260 lines
8.6KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2020 - Raw Material Software Limited
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 6 End-User License
  8. Agreement and JUCE Privacy Policy (both effective as of the 16th June 2020).
  9. End User License Agreement: www.juce.com/juce-6-licence
  10. Privacy Policy: www.juce.com/juce-privacy-policy
  11. Or: You may also use this code under the terms of the GPL v3 (see
  12. www.gnu.org/licenses).
  13. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  14. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  15. DISCLAIMED.
  16. ==============================================================================
  17. */
  18. namespace juce
  19. {
  20. struct SHA256Processor
  21. {
  22. // expects 64 bytes of data
  23. void processFullBlock (const void* data) noexcept
  24. {
  25. const uint32_t constants[] =
  26. {
  27. 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
  28. 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
  29. 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
  30. 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
  31. 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13, 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
  32. 0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
  33. 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
  34. 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208, 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2
  35. };
  36. uint32_t block[16], s[8];
  37. memcpy (s, state, sizeof (s));
  38. auto d = static_cast<const uint8_t*> (data);
  39. for (auto& b : block)
  40. {
  41. b = (uint32_t (d[0]) << 24) | (uint32_t (d[1]) << 16) | (uint32_t (d[2]) << 8) | d[3];
  42. d += 4;
  43. }
  44. auto convolve = [&] (uint32_t i, uint32_t j)
  45. {
  46. s[(7 - i) & 7] += S1 (s[(4 - i) & 7]) + ch (s[(4 - i) & 7], s[(5 - i) & 7], s[(6 - i) & 7]) + constants[i + j]
  47. + (j != 0 ? (block[i & 15] += s1 (block[(i - 2) & 15]) + block[(i - 7) & 15] + s0 (block[(i - 15) & 15]))
  48. : block[i]);
  49. s[(3 - i) & 7] += s[(7 - i) & 7];
  50. s[(7 - i) & 7] += S0 (s[(0 - i) & 7]) + maj (s[(0 - i) & 7], s[(1 - i) & 7], s[(2 - i) & 7]);
  51. };
  52. for (uint32_t j = 0; j < 64; j += 16)
  53. for (uint32_t i = 0; i < 16; ++i)
  54. convolve (i, j);
  55. for (int i = 0; i < 8; ++i)
  56. state[i] += s[i];
  57. length += 64;
  58. }
  59. void processFinalBlock (const void* data, uint32_t numBytes) noexcept
  60. {
  61. jassert (numBytes < 64);
  62. length += numBytes;
  63. length *= 8; // (the length is stored as a count of bits, not bytes)
  64. uint8_t finalBlocks[128];
  65. memcpy (finalBlocks, data, numBytes);
  66. finalBlocks[numBytes++] = 128; // append a '1' bit
  67. while (numBytes != 56 && numBytes < 64 + 56)
  68. finalBlocks[numBytes++] = 0; // pad with zeros..
  69. for (int i = 8; --i >= 0;)
  70. finalBlocks[numBytes++] = (uint8_t) (length >> (i * 8)); // append the length.
  71. jassert (numBytes == 64 || numBytes == 128);
  72. processFullBlock (finalBlocks);
  73. if (numBytes > 64)
  74. processFullBlock (finalBlocks + 64);
  75. }
  76. void copyResult (uint8_t* result) const noexcept
  77. {
  78. for (auto s : state)
  79. {
  80. *result++ = (uint8_t) (s >> 24);
  81. *result++ = (uint8_t) (s >> 16);
  82. *result++ = (uint8_t) (s >> 8);
  83. *result++ = (uint8_t) s;
  84. }
  85. }
  86. void processStream (InputStream& input, int64_t numBytesToRead, uint8_t* result)
  87. {
  88. if (numBytesToRead < 0)
  89. numBytesToRead = std::numeric_limits<int64_t>::max();
  90. for (;;)
  91. {
  92. uint8_t buffer[64];
  93. auto bytesRead = input.read (buffer, (int) jmin (numBytesToRead, (int64_t) sizeof (buffer)));
  94. if (bytesRead < (int) sizeof (buffer))
  95. {
  96. processFinalBlock (buffer, (unsigned int) bytesRead);
  97. break;
  98. }
  99. numBytesToRead -= (int64_t) sizeof (buffer);
  100. processFullBlock (buffer);
  101. }
  102. copyResult (result);
  103. }
  104. private:
  105. uint32_t state[8] = { 0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a,
  106. 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19 };
  107. uint64_t length = 0;
  108. static uint32_t rotate (uint32_t x, uint32_t y) noexcept { return (x >> y) | (x << (32 - y)); }
  109. static uint32_t ch (uint32_t x, uint32_t y, uint32_t z) noexcept { return z ^ ((y ^ z) & x); }
  110. static uint32_t maj (uint32_t x, uint32_t y, uint32_t z) noexcept { return y ^ ((y ^ z) & (x ^ y)); }
  111. static uint32_t s0 (uint32_t x) noexcept { return rotate (x, 7) ^ rotate (x, 18) ^ (x >> 3); }
  112. static uint32_t s1 (uint32_t x) noexcept { return rotate (x, 17) ^ rotate (x, 19) ^ (x >> 10); }
  113. static uint32_t S0 (uint32_t x) noexcept { return rotate (x, 2) ^ rotate (x, 13) ^ rotate (x, 22); }
  114. static uint32_t S1 (uint32_t x) noexcept { return rotate (x, 6) ^ rotate (x, 11) ^ rotate (x, 25); }
  115. };
  116. //==============================================================================
  117. SHA256::SHA256() = default;
  118. SHA256::~SHA256() = default;
  119. SHA256::SHA256 (const SHA256&) = default;
  120. SHA256& SHA256::operator= (const SHA256&) = default;
  121. SHA256::SHA256 (const MemoryBlock& data)
  122. {
  123. process (data.getData(), data.getSize());
  124. }
  125. SHA256::SHA256 (const void* data, size_t numBytes)
  126. {
  127. process (data, numBytes);
  128. }
  129. SHA256::SHA256 (InputStream& input, int64 numBytesToRead)
  130. {
  131. SHA256Processor processor;
  132. processor.processStream (input, numBytesToRead, result);
  133. }
  134. SHA256::SHA256 (const File& file)
  135. {
  136. FileInputStream fin (file);
  137. if (fin.getStatus().wasOk())
  138. {
  139. SHA256Processor processor;
  140. processor.processStream (fin, -1, result);
  141. }
  142. else
  143. {
  144. zerostruct (result);
  145. }
  146. }
  147. SHA256::SHA256 (CharPointer_UTF8 utf8) noexcept
  148. {
  149. jassert (utf8.getAddress() != nullptr);
  150. process (utf8.getAddress(), utf8.sizeInBytes() - 1);
  151. }
  152. void SHA256::process (const void* data, size_t numBytes)
  153. {
  154. MemoryInputStream m (data, numBytes, false);
  155. SHA256Processor processor;
  156. processor.processStream (m, -1, result);
  157. }
  158. MemoryBlock SHA256::getRawData() const
  159. {
  160. return MemoryBlock (result, sizeof (result));
  161. }
  162. String SHA256::toHexString() const
  163. {
  164. return String::toHexString (result, sizeof (result), 0);
  165. }
  166. bool SHA256::operator== (const SHA256& other) const noexcept { return memcmp (result, other.result, sizeof (result)) == 0; }
  167. bool SHA256::operator!= (const SHA256& other) const noexcept { return ! operator== (other); }
  168. //==============================================================================
  169. #if JUCE_UNIT_TESTS
  170. class SHA256Tests : public UnitTest
  171. {
  172. public:
  173. SHA256Tests()
  174. : UnitTest ("SHA-256", UnitTestCategories::cryptography)
  175. {}
  176. void test (const char* input, const char* expected)
  177. {
  178. {
  179. SHA256 hash (input, strlen (input));
  180. expectEquals (hash.toHexString(), String (expected));
  181. }
  182. {
  183. CharPointer_UTF8 utf8 (input);
  184. SHA256 hash (utf8);
  185. expectEquals (hash.toHexString(), String (expected));
  186. }
  187. {
  188. MemoryInputStream m (input, strlen (input), false);
  189. SHA256 hash (m);
  190. expectEquals (hash.toHexString(), String (expected));
  191. }
  192. }
  193. void runTest() override
  194. {
  195. beginTest ("SHA256");
  196. test ("", "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855");
  197. test ("The quick brown fox jumps over the lazy dog", "d7a8fbb307d7809469ca9abcb0082e4f8d5651e46d3cdb762d02d0bf37c9e592");
  198. test ("The quick brown fox jumps over the lazy dog.", "ef537f25c895bfa782526529a9b63d97aa631564d5d789c2b765448c8635fb6c");
  199. }
  200. };
  201. static SHA256Tests sha256UnitTests;
  202. #endif
  203. } // namespace juce