summaryrefslogtreecommitdiffstats
path: root/engines/e_capi.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-12-02 14:30:39 +0000
committerDr. Stephen Henson <steve@openssl.org>2015-12-02 18:23:29 +0000
commit19c6d3ea2d3b4e0ad3e978e42cc7cbdf0c09891f (patch)
treeaf0e85dbee561857b2e3cc3dc93c8052a47f1b6e /engines/e_capi.c
parenta1d3f3d1d0711eeece52f132e73b533d814770ac (diff)
Remove RSA_FLAG_SIGN_VER flag.
Remove RSA_FLAG_SIGN_VER: this was origininally used to retain binary compatibility after RSA_METHOD was extended to include rsa_sign and rsa_verify fields. It is no longer needed. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'engines/e_capi.c')
-rw-r--r--engines/e_capi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/e_capi.c b/engines/e_capi.c
index b2ae577987..1e41b267e4 100644
--- a/engines/e_capi.c
+++ b/engines/e_capi.c
@@ -436,7 +436,7 @@ static RSA_METHOD capi_rsa_method = {
0, /* bn_mod_exp */
0, /* init */
capi_rsa_free, /* finish */
- RSA_FLAG_SIGN_VER, /* flags */
+ 0, /* flags */
NULL, /* app_data */
capi_rsa_sign, /* rsa_sign */
0 /* rsa_verify */