Accidentally forgot to dereference the BigInteger pointers in mod_pow()

This commit is contained in:
Gabriel Tofvesson 2018-03-05 08:02:47 +01:00
parent c12e588464
commit de5f9303ff

View File

@ -230,9 +230,9 @@ namespace CryptoCPP {
BIGINT_API BigInteger* BigInteger::mod_pow(BigInteger* base, BigInteger* exp, BigInteger* mod)
{
// Declare new versions that we can manipulate to our heart's content
BigInteger * b = new BigInteger(base);
BigInteger * e = new BigInteger(exp);
BigInteger * m = new BigInteger(mod);
BigInteger * b = new BigInteger(*base);
BigInteger * e = new BigInteger(*exp);
BigInteger * m = new BigInteger(*mod);
// Allocate a result
BigInteger * res = new BigInteger(1);