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

Method ShiftL64Bit

secp256k1/Int.cpp:474–481  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

472// ------------------------------------------------
473
474void Int::ShiftL64Bit() {
475
476 for (int i = NB64BLOCK-1 ; i>0; i--) {
477 bits64[i] = bits64[i - 1];
478 }
479 bits64[0] = 0;
480
481}
482
483// ------------------------------------------------
484

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected