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.

306 lines
11KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-11 by Raw Material Software Ltd.
  5. ------------------------------------------------------------------------------
  6. JUCE can be redistributed and/or modified under the terms of the GNU General
  7. Public License (Version 2), as published by the Free Software Foundation.
  8. A copy of the license is included in the JUCE distribution, or can be found
  9. online at www.gnu.org/licenses.
  10. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  11. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. ------------------------------------------------------------------------------
  14. To release a closed-source product which uses JUCE, commercial licenses are
  15. available: visit www.rawmaterialsoftware.com/juce for more information.
  16. ==============================================================================
  17. */
  18. BEGIN_JUCE_NAMESPACE
  19. //==============================================================================
  20. MD5::MD5()
  21. {
  22. zerostruct (result);
  23. }
  24. MD5::MD5 (const MD5& other)
  25. {
  26. memcpy (result, other.result, sizeof (result));
  27. }
  28. MD5& MD5::operator= (const MD5& other)
  29. {
  30. memcpy (result, other.result, sizeof (result));
  31. return *this;
  32. }
  33. //==============================================================================
  34. MD5::MD5 (const MemoryBlock& data)
  35. {
  36. ProcessContext context;
  37. context.processBlock (data.getData(), data.getSize());
  38. context.finish (result);
  39. }
  40. MD5::MD5 (const void* data, const size_t numBytes)
  41. {
  42. ProcessContext context;
  43. context.processBlock (data, numBytes);
  44. context.finish (result);
  45. }
  46. MD5::MD5 (const String& text)
  47. {
  48. ProcessContext context;
  49. String::CharPointerType t (text.getCharPointer());
  50. while (! t.isEmpty())
  51. {
  52. // force the string into integer-sized unicode characters, to try to make it
  53. // get the same results on all platforms + compilers.
  54. uint32 unicodeChar = ByteOrder::swapIfBigEndian ((uint32) t.getAndAdvance());
  55. context.processBlock (&unicodeChar, sizeof (unicodeChar));
  56. }
  57. context.finish (result);
  58. }
  59. void MD5::processStream (InputStream& input, int64 numBytesToRead)
  60. {
  61. ProcessContext context;
  62. if (numBytesToRead < 0)
  63. numBytesToRead = std::numeric_limits<int64>::max();
  64. while (numBytesToRead > 0)
  65. {
  66. uint8 tempBuffer [512];
  67. const int bytesRead = input.read (tempBuffer, (int) jmin (numBytesToRead, (int64) sizeof (tempBuffer)));
  68. if (bytesRead <= 0)
  69. break;
  70. numBytesToRead -= bytesRead;
  71. context.processBlock (tempBuffer, bytesRead);
  72. }
  73. context.finish (result);
  74. }
  75. MD5::MD5 (InputStream& input, int64 numBytesToRead)
  76. {
  77. processStream (input, numBytesToRead);
  78. }
  79. MD5::MD5 (const File& file)
  80. {
  81. FileInputStream fin (file);
  82. if (fin.getStatus().wasOk())
  83. processStream (fin, -1);
  84. else
  85. zerostruct (result);
  86. }
  87. MD5::~MD5()
  88. {
  89. }
  90. //==============================================================================
  91. namespace MD5Functions
  92. {
  93. void encode (void* const output, const void* const input, const int numBytes) noexcept
  94. {
  95. for (int i = 0; i < (numBytes >> 2); ++i)
  96. static_cast<uint32*> (output)[i] = ByteOrder::swapIfBigEndian (static_cast<const uint32*> (input) [i]);
  97. }
  98. inline uint32 rotateLeft (const uint32 x, const uint32 n) noexcept { return (x << n) | (x >> (32 - n)); }
  99. inline uint32 F (const uint32 x, const uint32 y, const uint32 z) noexcept { return (x & y) | (~x & z); }
  100. inline uint32 G (const uint32 x, const uint32 y, const uint32 z) noexcept { return (x & z) | (y & ~z); }
  101. inline uint32 H (const uint32 x, const uint32 y, const uint32 z) noexcept { return x ^ y ^ z; }
  102. inline uint32 I (const uint32 x, const uint32 y, const uint32 z) noexcept { return y ^ (x | ~z); }
  103. void FF (uint32& a, const uint32 b, const uint32 c, const uint32 d, const uint32 x, const uint32 s, const uint32 ac) noexcept
  104. {
  105. a += F (b, c, d) + x + ac;
  106. a = rotateLeft (a, s) + b;
  107. }
  108. void GG (uint32& a, const uint32 b, const uint32 c, const uint32 d, const uint32 x, const uint32 s, const uint32 ac) noexcept
  109. {
  110. a += G (b, c, d) + x + ac;
  111. a = rotateLeft (a, s) + b;
  112. }
  113. void HH (uint32& a, const uint32 b, const uint32 c, const uint32 d, const uint32 x, const uint32 s, const uint32 ac) noexcept
  114. {
  115. a += H (b, c, d) + x + ac;
  116. a = rotateLeft (a, s) + b;
  117. }
  118. void II (uint32& a, const uint32 b, const uint32 c, const uint32 d, const uint32 x, const uint32 s, const uint32 ac) noexcept
  119. {
  120. a += I (b, c, d) + x + ac;
  121. a = rotateLeft (a, s) + b;
  122. }
  123. }
  124. //==============================================================================
  125. MD5::ProcessContext::ProcessContext()
  126. {
  127. state[0] = 0x67452301;
  128. state[1] = 0xefcdab89;
  129. state[2] = 0x98badcfe;
  130. state[3] = 0x10325476;
  131. count[0] = 0;
  132. count[1] = 0;
  133. }
  134. void MD5::ProcessContext::processBlock (const void* const data, const size_t dataSize)
  135. {
  136. int bufferPos = ((count[0] >> 3) & 0x3F);
  137. count[0] += (uint32) (dataSize << 3);
  138. if (count[0] < ((uint32) dataSize << 3))
  139. count[1]++;
  140. count[1] += (uint32) (dataSize >> 29);
  141. const size_t spaceLeft = 64 - bufferPos;
  142. size_t i = 0;
  143. if (dataSize >= spaceLeft)
  144. {
  145. memcpy (buffer + bufferPos, data, spaceLeft);
  146. transform (buffer);
  147. for (i = spaceLeft; i + 64 <= dataSize; i += 64)
  148. transform (static_cast <const char*> (data) + i);
  149. bufferPos = 0;
  150. }
  151. memcpy (buffer + bufferPos, static_cast <const char*> (data) + i, dataSize - i);
  152. }
  153. //==============================================================================
  154. void MD5::ProcessContext::finish (void* const result)
  155. {
  156. unsigned char encodedLength[8];
  157. MD5Functions::encode (encodedLength, count, 8);
  158. // Pad out to 56 mod 64.
  159. const int index = (uint32) ((count[0] >> 3) & 0x3f);
  160. const int paddingLength = (index < 56) ? (56 - index)
  161. : (120 - index);
  162. uint8 paddingBuffer[64] = { 0x80 }; // first byte is 0x80, remaining bytes are zero.
  163. processBlock (paddingBuffer, paddingLength);
  164. processBlock (encodedLength, 8);
  165. MD5Functions::encode (result, state, 16);
  166. zerostruct (buffer);
  167. }
  168. void MD5::ProcessContext::transform (const void* const bufferToTransform)
  169. {
  170. using namespace MD5Functions;
  171. uint32 a = state[0];
  172. uint32 b = state[1];
  173. uint32 c = state[2];
  174. uint32 d = state[3];
  175. uint32 x[16];
  176. encode (x, bufferToTransform, 64);
  177. enum Constants
  178. {
  179. S11 = 7, S12 = 12, S13 = 17, S14 = 22, S21 = 5, S22 = 9, S23 = 14, S24 = 20,
  180. S31 = 4, S32 = 11, S33 = 16, S34 = 23, S41 = 6, S42 = 10, S43 = 15, S44 = 21
  181. };
  182. FF (a, b, c, d, x[ 0], S11, 0xd76aa478); FF (d, a, b, c, x[ 1], S12, 0xe8c7b756);
  183. FF (c, d, a, b, x[ 2], S13, 0x242070db); FF (b, c, d, a, x[ 3], S14, 0xc1bdceee);
  184. FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); FF (d, a, b, c, x[ 5], S12, 0x4787c62a);
  185. FF (c, d, a, b, x[ 6], S13, 0xa8304613); FF (b, c, d, a, x[ 7], S14, 0xfd469501);
  186. FF (a, b, c, d, x[ 8], S11, 0x698098d8); FF (d, a, b, c, x[ 9], S12, 0x8b44f7af);
  187. FF (c, d, a, b, x[10], S13, 0xffff5bb1); FF (b, c, d, a, x[11], S14, 0x895cd7be);
  188. FF (a, b, c, d, x[12], S11, 0x6b901122); FF (d, a, b, c, x[13], S12, 0xfd987193);
  189. FF (c, d, a, b, x[14], S13, 0xa679438e); FF (b, c, d, a, x[15], S14, 0x49b40821);
  190. GG (a, b, c, d, x[ 1], S21, 0xf61e2562); GG (d, a, b, c, x[ 6], S22, 0xc040b340);
  191. GG (c, d, a, b, x[11], S23, 0x265e5a51); GG (b, c, d, a, x[ 0], S24, 0xe9b6c7aa);
  192. GG (a, b, c, d, x[ 5], S21, 0xd62f105d); GG (d, a, b, c, x[10], S22, 0x02441453);
  193. GG (c, d, a, b, x[15], S23, 0xd8a1e681); GG (b, c, d, a, x[ 4], S24, 0xe7d3fbc8);
  194. GG (a, b, c, d, x[ 9], S21, 0x21e1cde6); GG (d, a, b, c, x[14], S22, 0xc33707d6);
  195. GG (c, d, a, b, x[ 3], S23, 0xf4d50d87); GG (b, c, d, a, x[ 8], S24, 0x455a14ed);
  196. GG (a, b, c, d, x[13], S21, 0xa9e3e905); GG (d, a, b, c, x[ 2], S22, 0xfcefa3f8);
  197. GG (c, d, a, b, x[ 7], S23, 0x676f02d9); GG (b, c, d, a, x[12], S24, 0x8d2a4c8a);
  198. HH (a, b, c, d, x[ 5], S31, 0xfffa3942); HH (d, a, b, c, x[ 8], S32, 0x8771f681);
  199. HH (c, d, a, b, x[11], S33, 0x6d9d6122); HH (b, c, d, a, x[14], S34, 0xfde5380c);
  200. HH (a, b, c, d, x[ 1], S31, 0xa4beea44); HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9);
  201. HH (c, d, a, b, x[ 7], S33, 0xf6bb4b60); HH (b, c, d, a, x[10], S34, 0xbebfbc70);
  202. HH (a, b, c, d, x[13], S31, 0x289b7ec6); HH (d, a, b, c, x[ 0], S32, 0xeaa127fa);
  203. HH (c, d, a, b, x[ 3], S33, 0xd4ef3085); HH (b, c, d, a, x[ 6], S34, 0x04881d05);
  204. HH (a, b, c, d, x[ 9], S31, 0xd9d4d039); HH (d, a, b, c, x[12], S32, 0xe6db99e5);
  205. HH (c, d, a, b, x[15], S33, 0x1fa27cf8); HH (b, c, d, a, x[ 2], S34, 0xc4ac5665);
  206. II (a, b, c, d, x[ 0], S41, 0xf4292244); II (d, a, b, c, x[ 7], S42, 0x432aff97);
  207. II (c, d, a, b, x[14], S43, 0xab9423a7); II (b, c, d, a, x[ 5], S44, 0xfc93a039);
  208. II (a, b, c, d, x[12], S41, 0x655b59c3); II (d, a, b, c, x[ 3], S42, 0x8f0ccc92);
  209. II (c, d, a, b, x[10], S43, 0xffeff47d); II (b, c, d, a, x[ 1], S44, 0x85845dd1);
  210. II (a, b, c, d, x[ 8], S41, 0x6fa87e4f); II (d, a, b, c, x[15], S42, 0xfe2ce6e0);
  211. II (c, d, a, b, x[ 6], S43, 0xa3014314); II (b, c, d, a, x[13], S44, 0x4e0811a1);
  212. II (a, b, c, d, x[ 4], S41, 0xf7537e82); II (d, a, b, c, x[11], S42, 0xbd3af235);
  213. II (c, d, a, b, x[ 2], S43, 0x2ad7d2bb); II (b, c, d, a, x[ 9], S44, 0xeb86d391);
  214. state[0] += a;
  215. state[1] += b;
  216. state[2] += c;
  217. state[3] += d;
  218. zerostruct (x);
  219. }
  220. //==============================================================================
  221. MemoryBlock MD5::getRawChecksumData() const
  222. {
  223. return MemoryBlock (result, sizeof (result));
  224. }
  225. String MD5::toHexString() const
  226. {
  227. return String::toHexString (result, sizeof (result), 0);
  228. }
  229. //==============================================================================
  230. bool MD5::operator== (const MD5& other) const
  231. {
  232. return memcmp (result, other.result, sizeof (result)) == 0;
  233. }
  234. bool MD5::operator!= (const MD5& other) const
  235. {
  236. return ! operator== (other);
  237. }
  238. END_JUCE_NAMESPACE