25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

43 satır
1.3 KiB

  1. /* Copyright (c) 2016, Google Inc.
  2. *
  3. * Permission to use, copy, modify, and/or distribute this software for any
  4. * purpose with or without fee is hereby granted, provided that the above
  5. * copyright notice and this permission notice appear in all copies.
  6. *
  7. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  10. * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  12. * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  13. * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
  14. #include "internal.h"
  15. /* Incomplete-reduction routines; for details on allowed input ranges
  16. * and produced output ranges, see the description in the paper:
  17. * https://cryptojedi.org/papers/#newhope */
  18. static const uint32_t kQInv = 12287; /* -inverse_mod(p,2^18) */
  19. static const uint32_t kRLog = 18;
  20. uint16_t newhope_montgomery_reduce(uint32_t a) {
  21. uint32_t u;
  22. u = (a * kQInv);
  23. u &= ((1 << kRLog) - 1);
  24. u *= PARAM_Q;
  25. a = a + u;
  26. return a >> 18;
  27. }
  28. uint16_t newhope_barrett_reduce(uint16_t a) {
  29. uint32_t u;
  30. u = ((uint32_t)a * 5) >> 16;
  31. u *= PARAM_Q;
  32. a -= u;
  33. return a;
  34. }