MCPcopy Create free account
hub / github.com/Yeuoly/0xUBypass / Invert

Method Invert

WindowsShellcodeInjector/RSA.cpp:77–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75}
76
77BigUint math::Invert(BigUint a, BigUint n) {
78 BigUint result;
79 mpz_invert(result.get_mpz_t(), a.get_mpz_t(), n.get_mpz_t());
80 return result;
81}
82
83BigUint math::Lcm(BigUint a, BigUint b) {
84 return a * b / Gcd(a, b);

Callers

nothing calls this directly

Calls 1

mpz_invertFunction · 0.85

Tested by

no test coverage detected