diff options
Diffstat (limited to 'src/lib/libcrypto/engine/eng_rsax.c')
-rw-r--r-- | src/lib/libcrypto/engine/eng_rsax.c | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/src/lib/libcrypto/engine/eng_rsax.c b/src/lib/libcrypto/engine/eng_rsax.c index fa9159499d..c0f6851601 100644 --- a/src/lib/libcrypto/engine/eng_rsax.c +++ b/src/lib/libcrypto/engine/eng_rsax.c | |||
@@ -116,22 +116,12 @@ static const ENGINE_CMD_DEFN e_rsax_cmd_defns[] = { | |||
116 | 116 | ||
117 | #ifndef OPENSSL_NO_RSA | 117 | #ifndef OPENSSL_NO_RSA |
118 | /* Our internal RSA_METHOD that we provide pointers to */ | 118 | /* Our internal RSA_METHOD that we provide pointers to */ |
119 | static RSA_METHOD e_rsax_rsa = | 119 | static RSA_METHOD e_rsax_rsa = { |
120 | { | 120 | .name = "Intel RSA-X method", |
121 | "Intel RSA-X method", | 121 | .rsa_mod_exp = e_rsax_rsa_mod_exp, |
122 | NULL, | 122 | .finish = e_rsax_rsa_finish, |
123 | NULL, | 123 | .flags = RSA_FLAG_CACHE_PUBLIC|RSA_FLAG_CACHE_PRIVATE, |
124 | NULL, | 124 | }; |
125 | NULL, | ||
126 | e_rsax_rsa_mod_exp, | ||
127 | NULL, | ||
128 | NULL, | ||
129 | e_rsax_rsa_finish, | ||
130 | RSA_FLAG_CACHE_PUBLIC|RSA_FLAG_CACHE_PRIVATE, | ||
131 | NULL, | ||
132 | NULL, | ||
133 | NULL | ||
134 | }; | ||
135 | #endif | 125 | #endif |
136 | 126 | ||
137 | /* Constants used when creating the ENGINE */ | 127 | /* Constants used when creating the ENGINE */ |