bn_mp_or.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #include <tommath.h>
  2. #ifdef BN_MP_OR_C
  3. /* LibTomMath, multiple-precision integer library -- Tom St Denis
  4. *
  5. * LibTomMath is a library that provides multiple-precision
  6. * integer arithmetic as well as number theoretic functionality.
  7. *
  8. * The library was designed directly after the MPI library by
  9. * Michael Fromberger but has been written from scratch with
  10. * additional optimizations in place.
  11. *
  12. * The library is free for all purposes without any express
  13. * guarantee it works.
  14. *
  15. * Tom St Denis, tomstdenis@gmail.com, http://math.libtomcrypt.com
  16. */
  17. /* OR two ints together */
  18. int mp_or (mp_int * a, mp_int * b, mp_int * c)
  19. {
  20. int res, ix, px;
  21. mp_int t, *x;
  22. if (a->used > b->used) {
  23. if ((res = mp_init_copy (&t, a)) != MP_OKAY) {
  24. return res;
  25. }
  26. px = b->used;
  27. x = b;
  28. } else {
  29. if ((res = mp_init_copy (&t, b)) != MP_OKAY) {
  30. return res;
  31. }
  32. px = a->used;
  33. x = a;
  34. }
  35. for (ix = 0; ix < px; ix++) {
  36. t.dp[ix] |= x->dp[ix];
  37. }
  38. mp_clamp (&t);
  39. mp_exch (c, &t);
  40. mp_clear (&t);
  41. return MP_OKAY;
  42. }
  43. #endif
  44. /* $Source: /cvs/libtom/libtommath/bn_mp_or.c,v $ */
  45. /* $Revision: 1.3 $ */
  46. /* $Date: 2006/03/31 14:18:44 $ */