Browse Source

use portable load_constants

pull/4/head
Michael Toutonghi 6 years ago
parent
commit
9ec211d18b
  1. 7
      src/crypto/verus_hash.cpp

7
src/crypto/verus_hash.cpp

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

Loading…
Cancel
Save