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

Method ShiftL32Bit

secp256k1/Int.cpp:463–470  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

461// ------------------------------------------------
462
463void Int::ShiftL32Bit() {
464
465 for(int i=NB32BLOCK-1;i>0;i--) {
466 bits[i]=bits[i-1];
467 }
468 bits[0]=0;
469
470}
471
472// ------------------------------------------------
473

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected