crypto_internal-modexp.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Crypto wrapper for internal crypto implementation - modexp
  3. * Copyright (c) 2006-2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include "common.h"
  10. #include "tls/bignum.h"
  11. #include "crypto.h"
  12. int crypto_mod_exp(const u8 *base, size_t base_len,
  13. const u8 *power, size_t power_len,
  14. const u8 *modulus, size_t modulus_len,
  15. u8 *result, size_t *result_len)
  16. {
  17. struct bignum *bn_base, *bn_exp, *bn_modulus, *bn_result;
  18. int ret = -1;
  19. bn_base = bignum_init();
  20. bn_exp = bignum_init();
  21. bn_modulus = bignum_init();
  22. bn_result = bignum_init();
  23. if (bn_base == NULL || bn_exp == NULL || bn_modulus == NULL ||
  24. bn_result == NULL)
  25. goto error;
  26. if (bignum_set_unsigned_bin(bn_base, base, base_len) < 0 ||
  27. bignum_set_unsigned_bin(bn_exp, power, power_len) < 0 ||
  28. bignum_set_unsigned_bin(bn_modulus, modulus, modulus_len) < 0)
  29. goto error;
  30. if (bignum_exptmod(bn_base, bn_exp, bn_modulus, bn_result) < 0)
  31. goto error;
  32. ret = bignum_get_unsigned_bin(bn_result, result, result_len);
  33. error:
  34. bignum_deinit(bn_base);
  35. bignum_deinit(bn_exp);
  36. bignum_deinit(bn_modulus);
  37. bignum_deinit(bn_result);
  38. return ret;
  39. }