algorithms.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. /* algorithms.c - the algorithms supported by the rhash library
  2. *
  3. * Copyright (c) 2011, Aleksey Kravchenko <[email protected]>
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for any
  6. * purpose with or without fee is hereby granted.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
  9. * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  10. * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
  11. * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  12. * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  13. * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  14. * PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. #include <stdio.h>
  17. #include <assert.h>
  18. #include "byte_order.h"
  19. #include "rhash.h"
  20. #include "algorithms.h"
  21. /* header files of all supported hash sums */
  22. #if 0
  23. #include "aich.h"
  24. #include "crc32.h"
  25. #include "ed2k.h"
  26. #include "edonr.h"
  27. #include "gost12.h"
  28. #include "gost94.h"
  29. #include "has160.h"
  30. #include "md4.h"
  31. #endif
  32. #include "md5.h"
  33. #if 0
  34. #include "ripemd-160.h"
  35. #include "snefru.h"
  36. #endif
  37. #include "sha1.h"
  38. #include "sha256.h"
  39. #include "sha512.h"
  40. #include "sha3.h"
  41. #if 0
  42. #include "tiger.h"
  43. #include "tth.h"
  44. #include "whirlpool.h"
  45. #endif
  46. #ifdef USE_OPENSSL
  47. /* note: BTIH and AICH depends on the used SHA1 algorithm */
  48. # define NEED_OPENSSL_INIT (RHASH_MD4 | RHASH_MD5 | \
  49. RHASH_SHA1 | RHASH_SHA224 | RHASH_SHA256 | RHASH_SHA384 | RHASH_SHA512 | \
  50. RHASH_BTIH | RHASH_AICH | RHASH_RIPEMD160 | RHASH_WHIRLPOOL)
  51. #else
  52. # define NEED_OPENSSL_INIT 0
  53. #endif /* USE_OPENSSL */
  54. #ifdef GENERATE_GOST94_LOOKUP_TABLE
  55. # define NEED_GOST94_INIT (RHASH_GOST94 | RHASH_GOST94_CRYPTOPRO)
  56. #else
  57. # define NEED_GOST94_INIT 0
  58. #endif /* GENERATE_GOST94_LOOKUP_TABLE */
  59. #define RHASH_NEED_INIT_ALG (NEED_GOST94_INIT | NEED_OPENSSL_INIT)
  60. unsigned rhash_uninitialized_algorithms = RHASH_NEED_INIT_ALG;
  61. rhash_hash_info* rhash_info_table = rhash_hash_info_default;
  62. int rhash_info_size = RHASH_HASH_COUNT;
  63. #if 0
  64. static void rhash_crc32_init(uint32_t* crc32);
  65. static void rhash_crc32_update(uint32_t* crc32, const unsigned char* msg, size_t size);
  66. static void rhash_crc32_final(uint32_t* crc32, unsigned char* result);
  67. static void rhash_crc32c_init(uint32_t* crc32);
  68. static void rhash_crc32c_update(uint32_t* crc32, const unsigned char* msg, size_t size);
  69. static void rhash_crc32c_final(uint32_t* crc32, unsigned char* result);
  70. #endif
  71. #if 0
  72. rhash_info info_crc32 = { RHASH_CRC32, F_BE32, 4, "CRC32", "crc32" };
  73. rhash_info info_crc32c = { RHASH_CRC32C, F_BE32, 4, "CRC32C", "crc32c" };
  74. rhash_info info_md4 = { RHASH_MD4, F_LE32, 16, "MD4", "md4" };
  75. #endif
  76. rhash_info info_md5 = { RHASH_MD5, F_LE32, 16, "MD5", "md5" };
  77. rhash_info info_sha1 = { RHASH_SHA1, F_BE32, 20, "SHA1", "sha1" };
  78. #if 0
  79. rhash_info info_tiger = { RHASH_TIGER, F_LE64, 24, "TIGER", "tiger" };
  80. rhash_info info_tth = { RHASH_TTH, F_BS32, 24, "TTH", "tree:tiger" };
  81. rhash_info info_btih = { RHASH_BTIH, 0, 20, "BTIH", "btih" };
  82. rhash_info info_ed2k = { RHASH_ED2K, F_LE32, 16, "ED2K", "ed2k" };
  83. rhash_info info_aich = { RHASH_AICH, F_BS32, 20, "AICH", "aich" };
  84. rhash_info info_whirlpool = { RHASH_WHIRLPOOL, F_BE64, 64, "WHIRLPOOL", "whirlpool" };
  85. rhash_info info_rmd160 = { RHASH_RIPEMD160, F_LE32, 20, "RIPEMD-160", "ripemd160" };
  86. rhash_info info_gost12_256 = { RHASH_GOST12_256, F_LE64, 32, "GOST12-256", "gost12-256" };
  87. rhash_info info_gost12_512 = { RHASH_GOST12_512, F_LE64, 64, "GOST12-512", "gost12-512" };
  88. rhash_info info_gost94 = { RHASH_GOST94, F_LE32, 32, "GOST94", "gost94" };
  89. rhash_info info_gost94pro = { RHASH_GOST94_CRYPTOPRO, F_LE32, 32, "GOST94-CRYPTOPRO", "gost94-cryptopro" };
  90. rhash_info info_has160 = { RHASH_HAS160, F_LE32, 20, "HAS-160", "has160" };
  91. rhash_info info_snf128 = { RHASH_SNEFRU128, F_BE32, 16, "SNEFRU-128", "snefru128" };
  92. rhash_info info_snf256 = { RHASH_SNEFRU256, F_BE32, 32, "SNEFRU-256", "snefru256" };
  93. #endif
  94. rhash_info info_sha224 = { RHASH_SHA224, F_BE32, 28, "SHA-224", "sha224" };
  95. rhash_info info_sha256 = { RHASH_SHA256, F_BE32, 32, "SHA-256", "sha256" };
  96. rhash_info info_sha384 = { RHASH_SHA384, F_BE64, 48, "SHA-384", "sha384" };
  97. rhash_info info_sha512 = { RHASH_SHA512, F_BE64, 64, "SHA-512", "sha512" };
  98. #if 0
  99. rhash_info info_edr256 = { RHASH_EDONR256, F_LE32, 32, "EDON-R256", "edon-r256" };
  100. rhash_info info_edr512 = { RHASH_EDONR512, F_LE64, 64, "EDON-R512", "edon-r512" };
  101. #endif
  102. rhash_info info_sha3_224 = { RHASH_SHA3_224, F_LE64, 28, "SHA3-224", "sha3-224" };
  103. rhash_info info_sha3_256 = { RHASH_SHA3_256, F_LE64, 32, "SHA3-256", "sha3-256" };
  104. rhash_info info_sha3_384 = { RHASH_SHA3_384, F_LE64, 48, "SHA3-384", "sha3-384" };
  105. rhash_info info_sha3_512 = { RHASH_SHA3_512, F_LE64, 64, "SHA3-512", "sha3-512" };
  106. /* some helper macros */
  107. #define dgshft(name) (((char*)&((name##_ctx*)0)->hash) - (char*)0)
  108. #define dgshft2(name, field) (((char*)&((name##_ctx*)0)->field) - (char*)0)
  109. #define ini(name) ((pinit_t)(name##_init))
  110. #define upd(name) ((pupdate_t)(name##_update))
  111. #define fin(name) ((pfinal_t)(name##_final))
  112. #define iuf(name) ini(name), upd(name), fin(name)
  113. #define iuf2(name1, name2) ini(name1), upd(name2), fin(name2)
  114. #define diuf(name) dgshft(name), ini(name), upd(name), fin(name)
  115. /* information about all supported hash functions */
  116. rhash_hash_info rhash_hash_info_default[RHASH_HASH_COUNT] =
  117. {
  118. #if 0
  119. { &info_crc32, sizeof(uint32_t), 0, iuf(rhash_crc32), 0 }, /* 32 bit */
  120. { &info_md4, sizeof(md4_ctx), dgshft(md4), iuf(rhash_md4), 0 }, /* 128 bit */
  121. #endif
  122. { &info_md5, sizeof(md5_ctx), dgshft(md5), iuf(rhash_md5), 0 }, /* 128 bit */
  123. { &info_sha1, sizeof(sha1_ctx), dgshft(sha1), iuf(rhash_sha1), 0 }, /* 160 bit */
  124. #if 0
  125. { &info_tiger, sizeof(tiger_ctx), dgshft(tiger), iuf(rhash_tiger), 0 }, /* 192 bit */
  126. { &info_tth, sizeof(tth_ctx), dgshft2(tth, tiger.hash), iuf(rhash_tth), 0 }, /* 192 bit */
  127. { &info_ed2k, sizeof(ed2k_ctx), dgshft2(ed2k, md4_context_inner.hash), iuf(rhash_ed2k), 0 }, /* 128 bit */
  128. { &info_aich, sizeof(aich_ctx), dgshft2(aich, sha1_context.hash), iuf(rhash_aich), (pcleanup_t)rhash_aich_cleanup }, /* 160 bit */
  129. { &info_whirlpool, sizeof(whirlpool_ctx), dgshft(whirlpool), iuf(rhash_whirlpool), 0 }, /* 512 bit */
  130. { &info_rmd160, sizeof(ripemd160_ctx), dgshft(ripemd160), iuf(rhash_ripemd160), 0 }, /* 160 bit */
  131. { &info_gost94, sizeof(gost94_ctx), dgshft(gost94), iuf(rhash_gost94), 0 }, /* 256 bit */
  132. { &info_gost94pro, sizeof(gost94_ctx), dgshft(gost94), iuf2(rhash_gost94_cryptopro, rhash_gost94), 0 }, /* 256 bit */
  133. { &info_has160, sizeof(has160_ctx), dgshft(has160), iuf(rhash_has160), 0 }, /* 160 bit */
  134. { &info_gost12_256, sizeof(gost12_ctx), dgshft2(gost12, h) + 32, iuf2(rhash_gost12_256, rhash_gost12), 0 }, /* 256 bit */
  135. { &info_gost12_512, sizeof(gost12_ctx), dgshft2(gost12, h), iuf2(rhash_gost12_512, rhash_gost12), 0 }, /* 512 bit */
  136. #endif
  137. { &info_sha224, sizeof(sha256_ctx), dgshft(sha256), iuf2(rhash_sha224, rhash_sha256), 0 }, /* 224 bit */
  138. { &info_sha256, sizeof(sha256_ctx), dgshft(sha256), iuf(rhash_sha256), 0 }, /* 256 bit */
  139. { &info_sha384, sizeof(sha512_ctx), dgshft(sha512), iuf2(rhash_sha384, rhash_sha512), 0 }, /* 384 bit */
  140. { &info_sha512, sizeof(sha512_ctx), dgshft(sha512), iuf(rhash_sha512), 0 }, /* 512 bit */
  141. #if 0
  142. { &info_edr256, sizeof(edonr_ctx), dgshft2(edonr, u.data256.hash) + 32, iuf(rhash_edonr256), 0 }, /* 256 bit */
  143. { &info_edr512, sizeof(edonr_ctx), dgshft2(edonr, u.data512.hash) + 64, iuf(rhash_edonr512), 0 }, /* 512 bit */
  144. #endif
  145. { &info_sha3_224, sizeof(sha3_ctx), dgshft(sha3), iuf2(rhash_sha3_224, rhash_sha3), 0 }, /* 224 bit */
  146. { &info_sha3_256, sizeof(sha3_ctx), dgshft(sha3), iuf2(rhash_sha3_256, rhash_sha3), 0 }, /* 256 bit */
  147. { &info_sha3_384, sizeof(sha3_ctx), dgshft(sha3), iuf2(rhash_sha3_384, rhash_sha3), 0 }, /* 384 bit */
  148. { &info_sha3_512, sizeof(sha3_ctx), dgshft(sha3), iuf2(rhash_sha3_512, rhash_sha3), 0 }, /* 512 bit */
  149. #if 0
  150. { &info_crc32c, sizeof(uint32_t), 0, iuf(rhash_crc32c), 0 }, /* 32 bit */
  151. { &info_snf128, sizeof(snefru_ctx), dgshft(snefru), iuf2(rhash_snefru128, rhash_snefru), 0 }, /* 128 bit */
  152. { &info_snf256, sizeof(snefru_ctx), dgshft(snefru), iuf2(rhash_snefru256, rhash_snefru), 0 }, /* 256 bit */
  153. #endif
  154. };
  155. /**
  156. * Initialize requested algorithms.
  157. *
  158. * @param mask ids of hash sums to initialize
  159. */
  160. void rhash_init_algorithms(unsigned mask)
  161. {
  162. (void)mask; /* unused now */
  163. /* verify that RHASH_HASH_COUNT is the index of the major bit of RHASH_ALL_HASHES */
  164. assert(1 == (RHASH_ALL_HASHES >> (RHASH_HASH_COUNT - 1)));
  165. #ifdef GENERATE_GOST94_LOOKUP_TABLE
  166. rhash_gost94_init_table();
  167. #endif
  168. rhash_uninitialized_algorithms = 0;
  169. }
  170. /**
  171. * Returns information about a hash function by its hash_id.
  172. *
  173. * @param hash_id the id of hash algorithm
  174. * @return pointer to the rhash_info structure containing the information
  175. */
  176. const rhash_info* rhash_info_by_id(unsigned hash_id)
  177. {
  178. hash_id &= RHASH_ALL_HASHES;
  179. /* check that one and only one bit is set */
  180. if (!hash_id || (hash_id & (hash_id - 1)) != 0) return NULL;
  181. return rhash_info_table[rhash_ctz(hash_id)].info;
  182. }
  183. #if 0
  184. /* CRC32 helper functions */
  185. /**
  186. * Initialize crc32 hash.
  187. *
  188. * @param crc32 pointer to the hash to initialize
  189. */
  190. static void rhash_crc32_init(uint32_t* crc32)
  191. {
  192. *crc32 = 0; /* note: context size is sizeof(uint32_t) */
  193. }
  194. /**
  195. * Calculate message CRC32 hash.
  196. * Can be called repeatedly with chunks of the message to be hashed.
  197. *
  198. * @param crc32 pointer to the hash
  199. * @param msg message chunk
  200. * @param size length of the message chunk
  201. */
  202. static void rhash_crc32_update(uint32_t* crc32, const unsigned char* msg, size_t size)
  203. {
  204. *crc32 = rhash_get_crc32(*crc32, msg, size);
  205. }
  206. /**
  207. * Store calculated hash into the given array.
  208. *
  209. * @param crc32 pointer to the current hash value
  210. * @param result calculated hash in binary form
  211. */
  212. static void rhash_crc32_final(uint32_t* crc32, unsigned char* result)
  213. {
  214. #if defined(CPU_IA32) || defined(CPU_X64)
  215. /* intel CPUs support assigment with non 32-bit aligned pointers */
  216. *(unsigned*)result = be2me_32(*crc32);
  217. #else
  218. /* correct saving BigEndian integer on all archs */
  219. result[0] = (unsigned char)(*crc32 >> 24), result[1] = (unsigned char)(*crc32 >> 16);
  220. result[2] = (unsigned char)(*crc32 >> 8), result[3] = (unsigned char)(*crc32);
  221. #endif
  222. }
  223. /**
  224. * Initialize crc32c hash.
  225. *
  226. * @param crc32c pointer to the hash to initialize
  227. */
  228. static void rhash_crc32c_init(uint32_t* crc32c)
  229. {
  230. *crc32c = 0; /* note: context size is sizeof(uint32_t) */
  231. }
  232. /**
  233. * Calculate message CRC32C hash.
  234. * Can be called repeatedly with chunks of the message to be hashed.
  235. *
  236. * @param crc32c pointer to the hash
  237. * @param msg message chunk
  238. * @param size length of the message chunk
  239. */
  240. static void rhash_crc32c_update(uint32_t* crc32c, const unsigned char* msg, size_t size)
  241. {
  242. *crc32c = rhash_get_crc32c(*crc32c, msg, size);
  243. }
  244. /**
  245. * Store calculated hash into the given array.
  246. *
  247. * @param crc32c pointer to the current hash value
  248. * @param result calculated hash in binary form
  249. */
  250. static void rhash_crc32c_final(uint32_t* crc32c, unsigned char* result)
  251. {
  252. #if defined(CPU_IA32) || defined(CPU_X64)
  253. /* intel CPUs support assigment with non 32-bit aligned pointers */
  254. *(unsigned*)result = be2me_32(*crc32c);
  255. #else
  256. /* correct saving BigEndian integer on all archs */
  257. result[0] = (unsigned char)(*crc32c >> 24), result[1] = (unsigned char)(*crc32c >> 16);
  258. result[2] = (unsigned char)(*crc32c >> 8), result[3] = (unsigned char)(*crc32c);
  259. #endif
  260. }
  261. #endif