summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src/crypto/rsa/rsa_pss.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libssl/src/crypto/rsa/rsa_pss.c')
-rw-r--r--lib/libssl/src/crypto/rsa/rsa_pss.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/libssl/src/crypto/rsa/rsa_pss.c b/lib/libssl/src/crypto/rsa/rsa_pss.c
index 75e8c185335..bd2fde07d43 100644
--- a/lib/libssl/src/crypto/rsa/rsa_pss.c
+++ b/lib/libssl/src/crypto/rsa/rsa_pss.c
@@ -66,10 +66,6 @@
static const 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)
{
@@ -294,7 +290,3 @@ int RSA_padding_add_PKCS1_PSS_mgf1(RSA *rsa, unsigned char *EM,
return ret;
}
-
-#if defined(_MSC_VER)
-#pragma optimize("",on)
-#endif