Fix build when OPENSSL_NO_RIPEMD and OPENSSL_NO_CAST are defined. Fix formatting.

This commit is contained in:
alegon01 2019-02-04 14:26:02 +01:00
parent f030aa2c25
commit 3d09823df0
1 changed files with 4 additions and 4 deletions

View File

@ -4653,9 +4653,9 @@ static int test_signature(CK_SESSION_HANDLE sess)
CKM_RSA_PKCS,
CKM_SHA1_RSA_PKCS,
CKM_MD5_RSA_PKCS,
#ifndef OPENSSL_NO_RIPEMD
#ifndef OPENSSL_NO_RIPEMD
CKM_RIPEMD160_RSA_PKCS,
#endif
#endif
CKM_SHA256_RSA_PKCS,
0xffffff
};
@ -5236,9 +5236,9 @@ static int test_unwrap(CK_SESSION_HANDLE sess)
errors += wrap_unwrap(sess, EVP_des_cbc(), privKeyObject);
errors += wrap_unwrap(sess, EVP_des_ede3_cbc(), privKeyObject);
errors += wrap_unwrap(sess, EVP_bf_cbc(), privKeyObject);
#ifndef OPENSSL_NO_CAST
#ifndef OPENSSL_NO_CAST
errors += wrap_unwrap(sess, EVP_cast5_cfb(), privKeyObject);
#endif
#endif
#endif
}