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

Method SetInt64

gmp256k1/Int.cpp:271–275  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

269}
270
271void Int::SetInt64(uint64_t value) {
272 char my_str_value[U64STRINGSIZE]; // 30 digits + null terminator
273 snprintf(my_str_value, U64STRINGSIZE, "%lu", value);
274 mpz_set_str(num,my_str_value,0);
275}
276
277void Int::SetInt32(const uint32_t value) {
278 mpz_set_ui(num,value);

Callers 3

keyhunt_legacy.cppFile · 0.45
mainFunction · 0.45
keyhunt.cppFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected