Accidentally forgot to dereference the BigInteger pointers in mod_pow()
This commit is contained in:
parent
c12e588464
commit
de5f9303ff
@ -230,9 +230,9 @@ namespace CryptoCPP {
|
|||||||
BIGINT_API BigInteger* BigInteger::mod_pow(BigInteger* base, BigInteger* exp, BigInteger* mod)
|
BIGINT_API BigInteger* BigInteger::mod_pow(BigInteger* base, BigInteger* exp, BigInteger* mod)
|
||||||
{
|
{
|
||||||
// Declare new versions that we can manipulate to our heart's content
|
// Declare new versions that we can manipulate to our heart's content
|
||||||
BigInteger * b = new BigInteger(base);
|
BigInteger * b = new BigInteger(*base);
|
||||||
BigInteger * e = new BigInteger(exp);
|
BigInteger * e = new BigInteger(*exp);
|
||||||
BigInteger * m = new BigInteger(mod);
|
BigInteger * m = new BigInteger(*mod);
|
||||||
|
|
||||||
// Allocate a result
|
// Allocate a result
|
||||||
BigInteger * res = new BigInteger(1);
|
BigInteger * res = new BigInteger(1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user