ref: 1a02ec3b5c4f3cb41c7a5b377c5fffa0a415e3b7
dir: /libmp/mpinvert.c/
#include "os.h" #include <mp.h> // use extended gcd to find the multiplicative inverse // res = b**-1 mod m void mpinvert(mpint *b, mpint *m, mpint *res) { mpint *v; v = mpnew(0); mpextendedgcd(b, m, v, res, nil); if(mpcmp(v, mpone) != 0) abort(); mpfree(v); mpmod(res, m, res); }