fe_frombytes.c 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #include "fe.h"
  2. #include "crypto_int64.h"
  3. #include "crypto_uint64.h"
  4. static crypto_uint64 load_3(const unsigned char *in)
  5. {
  6. crypto_uint64 result;
  7. result = (crypto_uint64) in[0];
  8. result |= ((crypto_uint64) in[1]) << 8;
  9. result |= ((crypto_uint64) in[2]) << 16;
  10. return result;
  11. }
  12. static crypto_uint64 load_4(const unsigned char *in)
  13. {
  14. crypto_uint64 result;
  15. result = (crypto_uint64) in[0];
  16. result |= ((crypto_uint64) in[1]) << 8;
  17. result |= ((crypto_uint64) in[2]) << 16;
  18. result |= ((crypto_uint64) in[3]) << 24;
  19. return result;
  20. }
  21. /*
  22. Ignores top bit of h.
  23. */
  24. void fe_frombytes(fe h,const unsigned char *s)
  25. {
  26. crypto_int64 h0 = load_4(s);
  27. crypto_int64 h1 = load_3(s + 4) << 6;
  28. crypto_int64 h2 = load_3(s + 7) << 5;
  29. crypto_int64 h3 = load_3(s + 10) << 3;
  30. crypto_int64 h4 = load_3(s + 13) << 2;
  31. crypto_int64 h5 = load_4(s + 16);
  32. crypto_int64 h6 = load_3(s + 20) << 7;
  33. crypto_int64 h7 = load_3(s + 23) << 5;
  34. crypto_int64 h8 = load_3(s + 26) << 4;
  35. crypto_int64 h9 = (load_3(s + 29) & 8388607) << 2;
  36. crypto_int64 carry0;
  37. crypto_int64 carry1;
  38. crypto_int64 carry2;
  39. crypto_int64 carry3;
  40. crypto_int64 carry4;
  41. crypto_int64 carry5;
  42. crypto_int64 carry6;
  43. crypto_int64 carry7;
  44. crypto_int64 carry8;
  45. crypto_int64 carry9;
  46. carry9 = (h9 + (crypto_int64) (1<<24)) >> 25; h0 += carry9 * 19; h9 -= SHL64(carry9,25);
  47. carry1 = (h1 + (crypto_int64) (1<<24)) >> 25; h2 += carry1; h1 -= SHL64(carry1,25);
  48. carry3 = (h3 + (crypto_int64) (1<<24)) >> 25; h4 += carry3; h3 -= SHL64(carry3,25);
  49. carry5 = (h5 + (crypto_int64) (1<<24)) >> 25; h6 += carry5; h5 -= SHL64(carry5,25);
  50. carry7 = (h7 + (crypto_int64) (1<<24)) >> 25; h8 += carry7; h7 -= SHL64(carry7,25);
  51. carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= SHL64(carry0,26);
  52. carry2 = (h2 + (crypto_int64) (1<<25)) >> 26; h3 += carry2; h2 -= SHL64(carry2,26);
  53. carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= SHL64(carry4,26);
  54. carry6 = (h6 + (crypto_int64) (1<<25)) >> 26; h7 += carry6; h6 -= SHL64(carry6,26);
  55. carry8 = (h8 + (crypto_int64) (1<<25)) >> 26; h9 += carry8; h8 -= SHL64(carry8,26);
  56. h[0] = (crypto_int32) h0;
  57. h[1] = (crypto_int32) h1;
  58. h[2] = (crypto_int32) h2;
  59. h[3] = (crypto_int32) h3;
  60. h[4] = (crypto_int32) h4;
  61. h[5] = (crypto_int32) h5;
  62. h[6] = (crypto_int32) h6;
  63. h[7] = (crypto_int32) h7;
  64. h[8] = (crypto_int32) h8;
  65. h[9] = (crypto_int32) h9;
  66. }