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

Method ModCube

secp256k1/IntMod.cpp:549–557  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

547// ------------------------------------------------
548
549void Int::ModCube(Int *a) {
550
551 Int p;
552 Int p2;
553 p.MontgomeryMult(a, a);
554 p2.MontgomeryMult(&p, a);
555 MontgomeryMult(&_R3, &p2);
556
557}
558
559// ------------------------------------------------
560

Callers

nothing calls this directly

Calls 1

MontgomeryMultMethod · 0.80

Tested by

no test coverage detected