Disable Cryptogams ASM on static Transform function

This needs mmore testing.
pull/853/head
Jeffrey Walton 2019-05-19 16:46:01 -04:00
parent d38e5a954d
commit 62d53e6c44
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 3 additions and 3 deletions

View File

@ -307,7 +307,7 @@ void SHA1::Transform(word32 *state, const word32 *data)
return;
}
#endif
#if CRYPTOGAMS_ARM_SHA1
#if CRYPTOGAMS_ARM_SHA1 && 0
if (HasARMv7())
{
static const bool unused = CryptogamsArmCaps();
@ -858,7 +858,7 @@ void SHA256::Transform(word32 *state, const word32 *data)
return;
}
#endif
#if CRYPTOGAMS_ARM_SHA256
#if CRYPTOGAMS_ARM_SHA256 && 0
if (HasARMv7())
{
static const bool unused = CryptogamsArmCaps();
@ -1344,7 +1344,7 @@ void SHA512::Transform(word64 *state, const word64 *data)
return;
}
#endif
#if CRYPTOGAMS_ARM_SHA512
#if CRYPTOGAMS_ARM_SHA512 && 0
if (HasARMv7())
{
static const bool unused = CryptogamsArmCaps();