summaryrefslogtreecommitdiffstats
path: root/crypto/rsa
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-08-07 22:29:58 +0000
committerAndy Polyakov <appro@openssl.org>2005-08-07 22:29:58 +0000
commit98e986141b416b99788f514218fbe3b53b49d6c8 (patch)
treed53e3ea65cf7e4aa9c8c6713db41eaafc1f0b418 /crypto/rsa
parentd7e35e037163319142be0d9bf51d99e96ee6e91f (diff)
Windows CE update from HEAD.
Diffstat (limited to 'crypto/rsa')
-rw-r--r--crypto/rsa/rsa_pss.c8
1 files changed, 8 insertions, 0 deletions
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