blob: 45912d6b3252f86b0a1f4ea64a585ea520ddd8dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include "os.h"
#include <mp.h>
#define iseven(a) (((a)->p[0] & 1) == 0)
// use extended gcd to find the multiplicative inverse
// res = b**-1 mod m
void
mpinvert(mpint *b, mpint *m, mpint *res)
{
mpint *dc1, *dc2; // don't care
int r;
dc1 = mpnew(0);
dc2 = mpnew(0);
mpextendedgcd(b, m, dc1, res, dc2);
r = mpcmp(dc1, mpone);
mpfree(dc1);
mpfree(dc2);
if(r != 0)
sysfatal("mpinvert: no inverse");
mpmod(res, m, res);
}
|