X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=crypto%2Frsa%2Frsa_pss.c;h=3280c9d40c0c63b767fbb31bb457848ced23c664;hp=2815628f5f79d6033a4494d32977aa47dbe3262e;hb=0491e05833a139deef5288abf1bcf61cb19b292e;hpb=9a1a5b8785f38481d55c32d8c1fec2d840389d3e diff --git a/crypto/rsa/rsa_pss.c b/crypto/rsa/rsa_pss.c index 2815628f5f..3280c9d40c 100644 --- a/crypto/rsa/rsa_pss.c +++ b/crypto/rsa/rsa_pss.c @@ -66,6 +66,10 @@ const static unsigned char zeroes[] = {0,0,0,0,0,0,0,0}; +#if defined(_MSC_VER) && defined(_ARM_) +#pragma optimize("g", off) +#endif + int RSA_verify_PKCS1_PSS(RSA *rsa, const unsigned char *mHash, const EVP_MD *Hash, const unsigned char *EM, int sLen) { @@ -259,3 +263,7 @@ int RSA_padding_add_PKCS1_PSS(RSA *rsa, unsigned char *EM, return ret; } + +#if defined(_MSC_VER) +#pragma optimize("",on) +#endif