use portable load_constants

This commit is contained in:
Michael Toutonghi
2018-07-06 14:16:25 -07:00
parent 6976734769
commit 9ec211d18b

View File

@@ -97,16 +97,15 @@ void (*CVerusHashV2::haraka512Function)(unsigned char *out, const unsigned char
void CVerusHashV2::init() void CVerusHashV2::init()
{ {
// load and tweak the haraka constants
load_constants();
load_constants_port();
if (IsCPUVerusOptimized()) if (IsCPUVerusOptimized())
{ {
load_constants();
haraka512Function = &haraka512; haraka512Function = &haraka512;
} }
else else
{ {
// load and tweak the haraka constants
load_constants_port();
haraka512Function = &haraka512_port; haraka512Function = &haraka512_port;
} }
} }