hash.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. 20080913
  3. D. J. Bernstein
  4. Public domain.
  5. */
  6. #include "crypto_hashblocks_sha512.h"
  7. #include "crypto_hash.h"
  8. #define blocks crypto_hashblocks_sha512
  9. static const unsigned char iv[64] = {
  10. 0x6a,0x09,0xe6,0x67,0xf3,0xbc,0xc9,0x08,
  11. 0xbb,0x67,0xae,0x85,0x84,0xca,0xa7,0x3b,
  12. 0x3c,0x6e,0xf3,0x72,0xfe,0x94,0xf8,0x2b,
  13. 0xa5,0x4f,0xf5,0x3a,0x5f,0x1d,0x36,0xf1,
  14. 0x51,0x0e,0x52,0x7f,0xad,0xe6,0x82,0xd1,
  15. 0x9b,0x05,0x68,0x8c,0x2b,0x3e,0x6c,0x1f,
  16. 0x1f,0x83,0xd9,0xab,0xfb,0x41,0xbd,0x6b,
  17. 0x5b,0xe0,0xcd,0x19,0x13,0x7e,0x21,0x79
  18. } ;
  19. typedef unsigned long long uint64;
  20. int crypto_hash(unsigned char *out,const unsigned char *in,unsigned long long inlen)
  21. {
  22. unsigned char h[64];
  23. unsigned char padded[256];
  24. int i;
  25. unsigned long long bytes = inlen;
  26. for (i = 0;i < 64;++i) h[i] = iv[i];
  27. blocks(h,in,inlen);
  28. in += inlen;
  29. inlen &= 127;
  30. in -= inlen;
  31. for (i = 0;i < inlen;++i) padded[i] = in[i];
  32. padded[inlen] = 0x80;
  33. if (inlen < 112) {
  34. for (i = inlen + 1;i < 119;++i) padded[i] = 0;
  35. padded[119] = bytes >> 61;
  36. padded[120] = bytes >> 53;
  37. padded[121] = bytes >> 45;
  38. padded[122] = bytes >> 37;
  39. padded[123] = bytes >> 29;
  40. padded[124] = bytes >> 21;
  41. padded[125] = bytes >> 13;
  42. padded[126] = bytes >> 5;
  43. padded[127] = bytes << 3;
  44. blocks(h,padded,128);
  45. } else {
  46. for (i = inlen + 1;i < 247;++i) padded[i] = 0;
  47. padded[247] = bytes >> 61;
  48. padded[248] = bytes >> 53;
  49. padded[249] = bytes >> 45;
  50. padded[250] = bytes >> 37;
  51. padded[251] = bytes >> 29;
  52. padded[252] = bytes >> 21;
  53. padded[253] = bytes >> 13;
  54. padded[254] = bytes >> 5;
  55. padded[255] = bytes << 3;
  56. blocks(h,padded,256);
  57. }
  58. for (i = 0;i < 64;++i) out[i] = h[i];
  59. return 0;
  60. }