/src/openssl32/crypto/evp/asymcipher.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 2006-2023 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * |
4 | | * Licensed under the Apache License 2.0 (the "License"). You may not use |
5 | | * this file except in compliance with the License. You can obtain a copy |
6 | | * in the file LICENSE in the source distribution or at |
7 | | * https://www.openssl.org/source/license.html |
8 | | */ |
9 | | |
10 | | #include <stdio.h> |
11 | | #include <stdlib.h> |
12 | | #include <openssl/objects.h> |
13 | | #include <openssl/evp.h> |
14 | | #include "internal/cryptlib.h" |
15 | | #include "internal/provider.h" |
16 | | #include "internal/core.h" |
17 | | #include "crypto/evp.h" |
18 | | #include "evp_local.h" |
19 | | |
20 | | static int evp_pkey_asym_cipher_init(EVP_PKEY_CTX *ctx, int operation, |
21 | | const OSSL_PARAM params[]) |
22 | 4.09k | { |
23 | 4.09k | int ret = 0; |
24 | 4.09k | void *provkey = NULL; |
25 | 4.09k | EVP_ASYM_CIPHER *cipher = NULL; |
26 | 4.09k | EVP_KEYMGMT *tmp_keymgmt = NULL; |
27 | 4.09k | const OSSL_PROVIDER *tmp_prov = NULL; |
28 | 4.09k | const char *supported_ciph = NULL; |
29 | 4.09k | int iter; |
30 | | |
31 | 4.09k | if (ctx == NULL) { |
32 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE); |
33 | 0 | return -2; |
34 | 0 | } |
35 | | |
36 | 4.09k | evp_pkey_ctx_free_old_ops(ctx); |
37 | 4.09k | ctx->operation = operation; |
38 | | |
39 | 4.09k | ERR_set_mark(); |
40 | | |
41 | 4.09k | if (evp_pkey_ctx_is_legacy(ctx)) |
42 | 0 | goto legacy; |
43 | | |
44 | 4.09k | if (ctx->pkey == NULL) { |
45 | 0 | ERR_clear_last_mark(); |
46 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_NO_KEY_SET); |
47 | 0 | goto err; |
48 | 0 | } |
49 | | |
50 | | /* |
51 | | * Try to derive the supported asym cipher from |ctx->keymgmt|. |
52 | | */ |
53 | 4.09k | if (!ossl_assert(ctx->pkey->keymgmt == NULL |
54 | 4.09k | || ctx->pkey->keymgmt == ctx->keymgmt)) { |
55 | 0 | ERR_clear_last_mark(); |
56 | 0 | ERR_raise(ERR_LIB_EVP, ERR_R_INTERNAL_ERROR); |
57 | 0 | goto err; |
58 | 0 | } |
59 | 4.09k | supported_ciph |
60 | 4.09k | = evp_keymgmt_util_query_operation_name(ctx->keymgmt, |
61 | 4.09k | OSSL_OP_ASYM_CIPHER); |
62 | 4.09k | if (supported_ciph == NULL) { |
63 | 0 | ERR_clear_last_mark(); |
64 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR); |
65 | 0 | goto err; |
66 | 0 | } |
67 | | |
68 | | /* |
69 | | * We perform two iterations: |
70 | | * |
71 | | * 1. Do the normal asym cipher fetch, using the fetching data given by |
72 | | * the EVP_PKEY_CTX. |
73 | | * 2. Do the provider specific asym cipher fetch, from the same provider |
74 | | * as |ctx->keymgmt| |
75 | | * |
76 | | * We then try to fetch the keymgmt from the same provider as the |
77 | | * asym cipher, and try to export |ctx->pkey| to that keymgmt (when |
78 | | * this keymgmt happens to be the same as |ctx->keymgmt|, the export |
79 | | * is a no-op, but we call it anyway to not complicate the code even |
80 | | * more). |
81 | | * If the export call succeeds (returns a non-NULL provider key pointer), |
82 | | * we're done and can perform the operation itself. If not, we perform |
83 | | * the second iteration, or jump to legacy. |
84 | | */ |
85 | 8.19k | for (iter = 1, provkey = NULL; iter < 3 && provkey == NULL; iter++) { |
86 | 4.09k | EVP_KEYMGMT *tmp_keymgmt_tofree; |
87 | | |
88 | | /* |
89 | | * If we're on the second iteration, free the results from the first. |
90 | | * They are NULL on the first iteration, so no need to check what |
91 | | * iteration we're on. |
92 | | */ |
93 | 4.09k | EVP_ASYM_CIPHER_free(cipher); |
94 | 4.09k | EVP_KEYMGMT_free(tmp_keymgmt); |
95 | | |
96 | 4.09k | switch (iter) { |
97 | 4.09k | case 1: |
98 | 4.09k | cipher = EVP_ASYM_CIPHER_fetch(ctx->libctx, supported_ciph, |
99 | 4.09k | ctx->propquery); |
100 | 4.09k | if (cipher != NULL) |
101 | 4.09k | tmp_prov = EVP_ASYM_CIPHER_get0_provider(cipher); |
102 | 4.09k | break; |
103 | 0 | case 2: |
104 | 0 | tmp_prov = EVP_KEYMGMT_get0_provider(ctx->keymgmt); |
105 | 0 | cipher = |
106 | 0 | evp_asym_cipher_fetch_from_prov((OSSL_PROVIDER *)tmp_prov, |
107 | 0 | supported_ciph, ctx->propquery); |
108 | 0 | if (cipher == NULL) |
109 | 0 | goto legacy; |
110 | 0 | break; |
111 | 4.09k | } |
112 | 4.09k | if (cipher == NULL) |
113 | 0 | continue; |
114 | | |
115 | | /* |
116 | | * Ensure that the key is provided, either natively, or as a cached |
117 | | * export. We start by fetching the keymgmt with the same name as |
118 | | * |ctx->pkey|, but from the provider of the asym cipher method, using |
119 | | * the same property query as when fetching the asym cipher method. |
120 | | * With the keymgmt we found (if we did), we try to export |ctx->pkey| |
121 | | * to it (evp_pkey_export_to_provider() is smart enough to only actually |
122 | | * export it if |tmp_keymgmt| is different from |ctx->pkey|'s keymgmt) |
123 | | */ |
124 | 4.09k | tmp_keymgmt_tofree = tmp_keymgmt |
125 | 4.09k | = evp_keymgmt_fetch_from_prov((OSSL_PROVIDER *)tmp_prov, |
126 | 4.09k | EVP_KEYMGMT_get0_name(ctx->keymgmt), |
127 | 4.09k | ctx->propquery); |
128 | 4.09k | if (tmp_keymgmt != NULL) |
129 | 4.09k | provkey = evp_pkey_export_to_provider(ctx->pkey, ctx->libctx, |
130 | 4.09k | &tmp_keymgmt, ctx->propquery); |
131 | 4.09k | if (tmp_keymgmt == NULL) |
132 | 0 | EVP_KEYMGMT_free(tmp_keymgmt_tofree); |
133 | 4.09k | } |
134 | | |
135 | 4.09k | if (provkey == NULL) { |
136 | 0 | EVP_ASYM_CIPHER_free(cipher); |
137 | 0 | goto legacy; |
138 | 0 | } |
139 | | |
140 | 4.09k | ERR_pop_to_mark(); |
141 | | |
142 | | /* No more legacy from here down to legacy: */ |
143 | | |
144 | 4.09k | ctx->op.ciph.cipher = cipher; |
145 | 4.09k | ctx->op.ciph.algctx = cipher->newctx(ossl_provider_ctx(cipher->prov)); |
146 | 4.09k | if (ctx->op.ciph.algctx == NULL) { |
147 | | /* The provider key can stay in the cache */ |
148 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR); |
149 | 0 | goto err; |
150 | 0 | } |
151 | | |
152 | 4.09k | switch (operation) { |
153 | 1.01k | case EVP_PKEY_OP_ENCRYPT: |
154 | 1.01k | if (cipher->encrypt_init == NULL) { |
155 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE); |
156 | 0 | ret = -2; |
157 | 0 | goto err; |
158 | 0 | } |
159 | 1.01k | ret = cipher->encrypt_init(ctx->op.ciph.algctx, provkey, params); |
160 | 1.01k | break; |
161 | 3.08k | case EVP_PKEY_OP_DECRYPT: |
162 | 3.08k | if (cipher->decrypt_init == NULL) { |
163 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE); |
164 | 0 | ret = -2; |
165 | 0 | goto err; |
166 | 0 | } |
167 | 3.08k | ret = cipher->decrypt_init(ctx->op.ciph.algctx, provkey, params); |
168 | 3.08k | break; |
169 | 0 | default: |
170 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR); |
171 | 0 | goto err; |
172 | 4.09k | } |
173 | | |
174 | 4.09k | if (ret <= 0) |
175 | 0 | goto err; |
176 | 4.09k | EVP_KEYMGMT_free(tmp_keymgmt); |
177 | 4.09k | return 1; |
178 | | |
179 | 0 | legacy: |
180 | | /* |
181 | | * If we don't have the full support we need with provided methods, |
182 | | * let's go see if legacy does. |
183 | | */ |
184 | 0 | ERR_pop_to_mark(); |
185 | 0 | EVP_KEYMGMT_free(tmp_keymgmt); |
186 | 0 | tmp_keymgmt = NULL; |
187 | |
|
188 | 0 | if (ctx->pmeth == NULL || ctx->pmeth->encrypt == NULL) { |
189 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE); |
190 | 0 | return -2; |
191 | 0 | } |
192 | 0 | switch (ctx->operation) { |
193 | 0 | case EVP_PKEY_OP_ENCRYPT: |
194 | 0 | if (ctx->pmeth->encrypt_init == NULL) |
195 | 0 | return 1; |
196 | 0 | ret = ctx->pmeth->encrypt_init(ctx); |
197 | 0 | break; |
198 | 0 | case EVP_PKEY_OP_DECRYPT: |
199 | 0 | if (ctx->pmeth->decrypt_init == NULL) |
200 | 0 | return 1; |
201 | 0 | ret = ctx->pmeth->decrypt_init(ctx); |
202 | 0 | break; |
203 | 0 | default: |
204 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR); |
205 | 0 | ret = -1; |
206 | 0 | } |
207 | | |
208 | 0 | err: |
209 | 0 | if (ret <= 0) { |
210 | 0 | evp_pkey_ctx_free_old_ops(ctx); |
211 | 0 | ctx->operation = EVP_PKEY_OP_UNDEFINED; |
212 | 0 | } |
213 | 0 | EVP_KEYMGMT_free(tmp_keymgmt); |
214 | 0 | return ret; |
215 | 0 | } |
216 | | |
217 | | int EVP_PKEY_encrypt_init(EVP_PKEY_CTX *ctx) |
218 | 1.36k | { |
219 | 1.36k | return evp_pkey_asym_cipher_init(ctx, EVP_PKEY_OP_ENCRYPT, NULL); |
220 | 1.36k | } |
221 | | |
222 | | int EVP_PKEY_encrypt_init_ex(EVP_PKEY_CTX *ctx, const OSSL_PARAM params[]) |
223 | 0 | { |
224 | 0 | return evp_pkey_asym_cipher_init(ctx, EVP_PKEY_OP_ENCRYPT, params); |
225 | 0 | } |
226 | | |
227 | | int EVP_PKEY_encrypt(EVP_PKEY_CTX *ctx, |
228 | | unsigned char *out, size_t *outlen, |
229 | | const unsigned char *in, size_t inlen) |
230 | 2.02k | { |
231 | 2.02k | int ret; |
232 | | |
233 | 2.02k | if (ctx == NULL) { |
234 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE); |
235 | 0 | return -2; |
236 | 0 | } |
237 | | |
238 | 2.02k | if (ctx->operation != EVP_PKEY_OP_ENCRYPT) { |
239 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_OPERATION_NOT_INITIALIZED); |
240 | 0 | return -1; |
241 | 0 | } |
242 | | |
243 | 2.02k | if (ctx->op.ciph.algctx == NULL) |
244 | 0 | goto legacy; |
245 | | |
246 | 2.02k | ret = ctx->op.ciph.cipher->encrypt(ctx->op.ciph.algctx, out, outlen, |
247 | 2.02k | (out == NULL ? 0 : *outlen), in, inlen); |
248 | 2.02k | return ret; |
249 | | |
250 | 0 | legacy: |
251 | 0 | if (ctx->pmeth == NULL || ctx->pmeth->encrypt == NULL) { |
252 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE); |
253 | 0 | return -2; |
254 | 0 | } |
255 | 0 | M_check_autoarg(ctx, out, outlen, EVP_F_EVP_PKEY_ENCRYPT) |
256 | 0 | return ctx->pmeth->encrypt(ctx, out, outlen, in, inlen); |
257 | 0 | } |
258 | | |
259 | | int EVP_PKEY_decrypt_init(EVP_PKEY_CTX *ctx) |
260 | 5.60k | { |
261 | 5.60k | return evp_pkey_asym_cipher_init(ctx, EVP_PKEY_OP_DECRYPT, NULL); |
262 | 5.60k | } |
263 | | |
264 | | int EVP_PKEY_decrypt_init_ex(EVP_PKEY_CTX *ctx, const OSSL_PARAM params[]) |
265 | 0 | { |
266 | 0 | return evp_pkey_asym_cipher_init(ctx, EVP_PKEY_OP_DECRYPT, params); |
267 | 0 | } |
268 | | |
269 | | int EVP_PKEY_decrypt(EVP_PKEY_CTX *ctx, |
270 | | unsigned char *out, size_t *outlen, |
271 | | const unsigned char *in, size_t inlen) |
272 | 3.08k | { |
273 | 3.08k | int ret; |
274 | | |
275 | 3.08k | if (ctx == NULL) { |
276 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE); |
277 | 0 | return -2; |
278 | 0 | } |
279 | | |
280 | 3.08k | if (ctx->operation != EVP_PKEY_OP_DECRYPT) { |
281 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_OPERATION_NOT_INITIALIZED); |
282 | 0 | return -1; |
283 | 0 | } |
284 | | |
285 | 3.08k | if (ctx->op.ciph.algctx == NULL) |
286 | 0 | goto legacy; |
287 | | |
288 | 3.08k | ret = ctx->op.ciph.cipher->decrypt(ctx->op.ciph.algctx, out, outlen, |
289 | 3.08k | (out == NULL ? 0 : *outlen), in, inlen); |
290 | 3.08k | return ret; |
291 | | |
292 | 0 | legacy: |
293 | 0 | if (ctx->pmeth == NULL || ctx->pmeth->decrypt == NULL) { |
294 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE); |
295 | 0 | return -2; |
296 | 0 | } |
297 | 0 | M_check_autoarg(ctx, out, outlen, EVP_F_EVP_PKEY_DECRYPT) |
298 | 0 | return ctx->pmeth->decrypt(ctx, out, outlen, in, inlen); |
299 | 0 | } |
300 | | |
301 | | /* decrypt to new buffer of dynamic size, checking any pre-determined size */ |
302 | | int evp_pkey_decrypt_alloc(EVP_PKEY_CTX *ctx, unsigned char **outp, |
303 | | size_t *outlenp, size_t expected_outlen, |
304 | | const unsigned char *in, size_t inlen) |
305 | 0 | { |
306 | 0 | if (EVP_PKEY_decrypt(ctx, NULL, outlenp, in, inlen) <= 0 |
307 | 0 | || (*outp = OPENSSL_malloc(*outlenp)) == NULL) |
308 | 0 | return -1; |
309 | 0 | if (EVP_PKEY_decrypt(ctx, *outp, outlenp, in, inlen) <= 0 |
310 | 0 | || *outlenp == 0 |
311 | 0 | || (expected_outlen != 0 && *outlenp != expected_outlen)) { |
312 | 0 | ERR_raise(ERR_LIB_EVP, ERR_R_EVP_LIB); |
313 | 0 | OPENSSL_clear_free(*outp, *outlenp); |
314 | 0 | *outp = NULL; |
315 | 0 | return 0; |
316 | 0 | } |
317 | 0 | return 1; |
318 | 0 | } |
319 | | |
320 | | static EVP_ASYM_CIPHER *evp_asym_cipher_new(OSSL_PROVIDER *prov) |
321 | 4 | { |
322 | 4 | EVP_ASYM_CIPHER *cipher = OPENSSL_zalloc(sizeof(EVP_ASYM_CIPHER)); |
323 | | |
324 | 4 | if (cipher == NULL) |
325 | 0 | return NULL; |
326 | | |
327 | 4 | if (!CRYPTO_NEW_REF(&cipher->refcnt, 1)) { |
328 | 0 | OPENSSL_free(cipher); |
329 | 0 | return NULL; |
330 | 0 | } |
331 | 4 | cipher->prov = prov; |
332 | 4 | ossl_provider_up_ref(prov); |
333 | | |
334 | 4 | return cipher; |
335 | 4 | } |
336 | | |
337 | | static void *evp_asym_cipher_from_algorithm(int name_id, |
338 | | const OSSL_ALGORITHM *algodef, |
339 | | OSSL_PROVIDER *prov) |
340 | 22 | { |
341 | 22 | const OSSL_DISPATCH *fns = algodef->implementation; |
342 | 22 | EVP_ASYM_CIPHER *cipher = NULL; |
343 | 22 | int ctxfncnt = 0, encfncnt = 0, decfncnt = 0; |
344 | 22 | int gparamfncnt = 0, sparamfncnt = 0; |
345 | | |
346 | 22 | if ((cipher = evp_asym_cipher_new(prov)) == NULL) { |
347 | 0 | ERR_raise(ERR_LIB_EVP, ERR_R_EVP_LIB); |
348 | 0 | goto err; |
349 | 0 | } |
350 | | |
351 | 22 | cipher->name_id = name_id; |
352 | 22 | if ((cipher->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) |
353 | 0 | goto err; |
354 | 22 | cipher->description = algodef->algorithm_description; |
355 | | |
356 | 264 | for (; fns->function_id != 0; fns++) { |
357 | 242 | switch (fns->function_id) { |
358 | 22 | case OSSL_FUNC_ASYM_CIPHER_NEWCTX: |
359 | 22 | if (cipher->newctx != NULL) |
360 | 0 | break; |
361 | 22 | cipher->newctx = OSSL_FUNC_asym_cipher_newctx(fns); |
362 | 22 | ctxfncnt++; |
363 | 22 | break; |
364 | 22 | case OSSL_FUNC_ASYM_CIPHER_ENCRYPT_INIT: |
365 | 22 | if (cipher->encrypt_init != NULL) |
366 | 0 | break; |
367 | 22 | cipher->encrypt_init = OSSL_FUNC_asym_cipher_encrypt_init(fns); |
368 | 22 | encfncnt++; |
369 | 22 | break; |
370 | 22 | case OSSL_FUNC_ASYM_CIPHER_ENCRYPT: |
371 | 22 | if (cipher->encrypt != NULL) |
372 | 0 | break; |
373 | 22 | cipher->encrypt = OSSL_FUNC_asym_cipher_encrypt(fns); |
374 | 22 | encfncnt++; |
375 | 22 | break; |
376 | 22 | case OSSL_FUNC_ASYM_CIPHER_DECRYPT_INIT: |
377 | 22 | if (cipher->decrypt_init != NULL) |
378 | 0 | break; |
379 | 22 | cipher->decrypt_init = OSSL_FUNC_asym_cipher_decrypt_init(fns); |
380 | 22 | decfncnt++; |
381 | 22 | break; |
382 | 22 | case OSSL_FUNC_ASYM_CIPHER_DECRYPT: |
383 | 22 | if (cipher->decrypt != NULL) |
384 | 0 | break; |
385 | 22 | cipher->decrypt = OSSL_FUNC_asym_cipher_decrypt(fns); |
386 | 22 | decfncnt++; |
387 | 22 | break; |
388 | 22 | case OSSL_FUNC_ASYM_CIPHER_FREECTX: |
389 | 22 | if (cipher->freectx != NULL) |
390 | 0 | break; |
391 | 22 | cipher->freectx = OSSL_FUNC_asym_cipher_freectx(fns); |
392 | 22 | ctxfncnt++; |
393 | 22 | break; |
394 | 22 | case OSSL_FUNC_ASYM_CIPHER_DUPCTX: |
395 | 22 | if (cipher->dupctx != NULL) |
396 | 0 | break; |
397 | 22 | cipher->dupctx = OSSL_FUNC_asym_cipher_dupctx(fns); |
398 | 22 | break; |
399 | 22 | case OSSL_FUNC_ASYM_CIPHER_GET_CTX_PARAMS: |
400 | 22 | if (cipher->get_ctx_params != NULL) |
401 | 0 | break; |
402 | 22 | cipher->get_ctx_params |
403 | 22 | = OSSL_FUNC_asym_cipher_get_ctx_params(fns); |
404 | 22 | gparamfncnt++; |
405 | 22 | break; |
406 | 22 | case OSSL_FUNC_ASYM_CIPHER_GETTABLE_CTX_PARAMS: |
407 | 22 | if (cipher->gettable_ctx_params != NULL) |
408 | 0 | break; |
409 | 22 | cipher->gettable_ctx_params |
410 | 22 | = OSSL_FUNC_asym_cipher_gettable_ctx_params(fns); |
411 | 22 | gparamfncnt++; |
412 | 22 | break; |
413 | 22 | case OSSL_FUNC_ASYM_CIPHER_SET_CTX_PARAMS: |
414 | 22 | if (cipher->set_ctx_params != NULL) |
415 | 0 | break; |
416 | 22 | cipher->set_ctx_params |
417 | 22 | = OSSL_FUNC_asym_cipher_set_ctx_params(fns); |
418 | 22 | sparamfncnt++; |
419 | 22 | break; |
420 | 22 | case OSSL_FUNC_ASYM_CIPHER_SETTABLE_CTX_PARAMS: |
421 | 22 | if (cipher->settable_ctx_params != NULL) |
422 | 0 | break; |
423 | 22 | cipher->settable_ctx_params |
424 | 22 | = OSSL_FUNC_asym_cipher_settable_ctx_params(fns); |
425 | 22 | sparamfncnt++; |
426 | 22 | break; |
427 | 242 | } |
428 | 242 | } |
429 | 22 | if (ctxfncnt != 2 |
430 | 22 | || (encfncnt != 0 && encfncnt != 2) |
431 | 22 | || (decfncnt != 0 && decfncnt != 2) |
432 | 22 | || (encfncnt != 2 && decfncnt != 2) |
433 | 22 | || (gparamfncnt != 0 && gparamfncnt != 2) |
434 | 22 | || (sparamfncnt != 0 && sparamfncnt != 2)) { |
435 | | /* |
436 | | * In order to be a consistent set of functions we must have at least |
437 | | * a set of context functions (newctx and freectx) as well as a pair of |
438 | | * "cipher" functions: (encrypt_init, encrypt) or |
439 | | * (decrypt_init decrypt). set_ctx_params and settable_ctx_params are |
440 | | * optional, but if one of them is present then the other one must also |
441 | | * be present. The same applies to get_ctx_params and |
442 | | * gettable_ctx_params. The dupctx function is optional. |
443 | | */ |
444 | 0 | ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_PROVIDER_FUNCTIONS); |
445 | 0 | goto err; |
446 | 0 | } |
447 | | |
448 | 22 | return cipher; |
449 | 0 | err: |
450 | 0 | EVP_ASYM_CIPHER_free(cipher); |
451 | 0 | return NULL; |
452 | 22 | } |
453 | | |
454 | | void EVP_ASYM_CIPHER_free(EVP_ASYM_CIPHER *cipher) |
455 | 13.9k | { |
456 | 13.9k | int i; |
457 | | |
458 | 13.9k | if (cipher == NULL) |
459 | 6.96k | return; |
460 | 7.01k | CRYPTO_DOWN_REF(&cipher->refcnt, &i); |
461 | 7.01k | if (i > 0) |
462 | 6.99k | return; |
463 | 18 | OPENSSL_free(cipher->type_name); |
464 | 18 | ossl_provider_free(cipher->prov); |
465 | 18 | CRYPTO_FREE_REF(&cipher->refcnt); |
466 | 18 | OPENSSL_free(cipher); |
467 | 18 | } |
468 | | |
469 | | int EVP_ASYM_CIPHER_up_ref(EVP_ASYM_CIPHER *cipher) |
470 | 7.00k | { |
471 | 7.00k | int ref = 0; |
472 | | |
473 | 7.00k | CRYPTO_UP_REF(&cipher->refcnt, &ref); |
474 | 7.00k | return 1; |
475 | 7.00k | } |
476 | | |
477 | | OSSL_PROVIDER *EVP_ASYM_CIPHER_get0_provider(const EVP_ASYM_CIPHER *cipher) |
478 | 12.5k | { |
479 | 12.5k | return cipher->prov; |
480 | 12.5k | } |
481 | | |
482 | | EVP_ASYM_CIPHER *EVP_ASYM_CIPHER_fetch(OSSL_LIB_CTX *ctx, const char *algorithm, |
483 | | const char *properties) |
484 | 6.96k | { |
485 | 6.96k | return evp_generic_fetch(ctx, OSSL_OP_ASYM_CIPHER, algorithm, properties, |
486 | 6.96k | evp_asym_cipher_from_algorithm, |
487 | 6.96k | (int (*)(void *))EVP_ASYM_CIPHER_up_ref, |
488 | 6.96k | (void (*)(void *))EVP_ASYM_CIPHER_free); |
489 | 6.96k | } |
490 | | |
491 | | EVP_ASYM_CIPHER *evp_asym_cipher_fetch_from_prov(OSSL_PROVIDER *prov, |
492 | | const char *algorithm, |
493 | | const char *properties) |
494 | 0 | { |
495 | 0 | return evp_generic_fetch_from_prov(prov, OSSL_OP_ASYM_CIPHER, |
496 | 0 | algorithm, properties, |
497 | 0 | evp_asym_cipher_from_algorithm, |
498 | 0 | (int (*)(void *))EVP_ASYM_CIPHER_up_ref, |
499 | 0 | (void (*)(void *))EVP_ASYM_CIPHER_free); |
500 | 0 | } |
501 | | |
502 | | int EVP_ASYM_CIPHER_is_a(const EVP_ASYM_CIPHER *cipher, const char *name) |
503 | 0 | { |
504 | 0 | return evp_is_a(cipher->prov, cipher->name_id, NULL, name); |
505 | 0 | } |
506 | | |
507 | | int evp_asym_cipher_get_number(const EVP_ASYM_CIPHER *cipher) |
508 | 0 | { |
509 | 0 | return cipher->name_id; |
510 | 0 | } |
511 | | |
512 | | const char *EVP_ASYM_CIPHER_get0_name(const EVP_ASYM_CIPHER *cipher) |
513 | 0 | { |
514 | 0 | return cipher->type_name; |
515 | 0 | } |
516 | | |
517 | | const char *EVP_ASYM_CIPHER_get0_description(const EVP_ASYM_CIPHER *cipher) |
518 | 0 | { |
519 | 0 | return cipher->description; |
520 | 0 | } |
521 | | |
522 | | void EVP_ASYM_CIPHER_do_all_provided(OSSL_LIB_CTX *libctx, |
523 | | void (*fn)(EVP_ASYM_CIPHER *cipher, |
524 | | void *arg), |
525 | | void *arg) |
526 | 2 | { |
527 | 2 | evp_generic_do_all(libctx, OSSL_OP_ASYM_CIPHER, |
528 | 2 | (void (*)(void *, void *))fn, arg, |
529 | 2 | evp_asym_cipher_from_algorithm, |
530 | 2 | (int (*)(void *))EVP_ASYM_CIPHER_up_ref, |
531 | 2 | (void (*)(void *))EVP_ASYM_CIPHER_free); |
532 | 2 | } |
533 | | |
534 | | |
535 | | int EVP_ASYM_CIPHER_names_do_all(const EVP_ASYM_CIPHER *cipher, |
536 | | void (*fn)(const char *name, void *data), |
537 | | void *data) |
538 | 0 | { |
539 | 0 | if (cipher->prov != NULL) |
540 | 0 | return evp_names_do_all(cipher->prov, cipher->name_id, fn, data); |
541 | | |
542 | 0 | return 1; |
543 | 0 | } |
544 | | |
545 | | const OSSL_PARAM *EVP_ASYM_CIPHER_gettable_ctx_params(const EVP_ASYM_CIPHER *cip) |
546 | 0 | { |
547 | 0 | void *provctx; |
548 | |
|
549 | 0 | if (cip == NULL || cip->gettable_ctx_params == NULL) |
550 | 0 | return NULL; |
551 | | |
552 | 0 | provctx = ossl_provider_ctx(EVP_ASYM_CIPHER_get0_provider(cip)); |
553 | 0 | return cip->gettable_ctx_params(NULL, provctx); |
554 | 0 | } |
555 | | |
556 | | const OSSL_PARAM *EVP_ASYM_CIPHER_settable_ctx_params(const EVP_ASYM_CIPHER *cip) |
557 | 8 | { |
558 | 8 | void *provctx; |
559 | | |
560 | 8 | if (cip == NULL || cip->settable_ctx_params == NULL) |
561 | 0 | return NULL; |
562 | | |
563 | 8 | provctx = ossl_provider_ctx(EVP_ASYM_CIPHER_get0_provider(cip)); |
564 | 8 | return cip->settable_ctx_params(NULL, provctx); |
565 | 8 | } |