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

Method GetInt64

gmp256k1/Int.cpp:215–222  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

213}
214
215uint64_t Int::GetInt64() {
216 char *temp =NULL;
217 uint64_t r;
218 temp = mpz_get_str(NULL,10,num);
219 r = strtoull(temp,NULL,10);
220 free(temp);
221 return r;
222}
223
224uint32_t Int::GetInt32() {
225 return mpz_get_ui(num);

Callers 3

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

Calls

no outgoing calls

Tested by

no test coverage detected