| 24 | |
| 25 | namespace init { |
| 26 | void SetGlobals() |
| 27 | { |
| 28 | std::string sha256_algo = SHA256AutoDetect(); |
| 29 | LogPrintf("Using the '%s' SHA256 implementation\n", sha256_algo); |
| 30 | RandomInit(); |
| 31 | ECC_Start(); |
| 32 | globalVerifyHandle.reset(new ECCVerifyHandle()); |
| 33 | } |
| 34 | |
| 35 | void UnsetGlobals() |
| 36 | { |
no test coverage detected