MCPcopy Create free account
hub / github.com/albertobsd/keyhunt / MultModN

Method MultModN

secp256k1/Int.cpp:684–691  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

682// ------------------------------------------------
683
684void Int::MultModN(Int *a,Int *b,Int *n) {
685
686 Int r;
687 Mult(a,b);
688 Div(n,&r);
689 Set(&r);
690
691}
692
693// ------------------------------------------------
694

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected