Coverage Report

Created: 2025-06-13 06:58

/src/openssl30/providers/implementations/encode_decode/decode_der2key.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2020-2024 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
/*
11
 * low level APIs are deprecated for public use, but still ok for
12
 * internal use.
13
 */
14
#include "internal/deprecated.h"
15
16
#include <openssl/core_dispatch.h>
17
#include <openssl/core_names.h>
18
#include <openssl/core_object.h>
19
#include <openssl/crypto.h>
20
#include <openssl/err.h>
21
#include <openssl/params.h>
22
#include <openssl/pem.h>         /* PEM_BUFSIZE and public PEM functions */
23
#include <openssl/pkcs12.h>
24
#include <openssl/x509.h>
25
#include <openssl/proverr.h>
26
#include "internal/cryptlib.h"   /* ossl_assert() */
27
#include "internal/asn1.h"
28
#include "crypto/dh.h"
29
#include "crypto/dsa.h"
30
#include "crypto/ec.h"
31
#include "crypto/evp.h"
32
#include "crypto/ecx.h"
33
#include "crypto/rsa.h"
34
#include "crypto/x509.h"
35
#include "openssl/obj_mac.h"
36
#include "prov/bio.h"
37
#include "prov/implementations.h"
38
#include "endecoder_local.h"
39
40
struct der2key_ctx_st;           /* Forward declaration */
41
typedef int check_key_fn(void *, struct der2key_ctx_st *ctx);
42
typedef void adjust_key_fn(void *, struct der2key_ctx_st *ctx);
43
typedef void free_key_fn(void *);
44
typedef void *d2i_PKCS8_fn(void **, const unsigned char **, long,
45
                           struct der2key_ctx_st *);
46
struct keytype_desc_st {
47
    const char *keytype_name;
48
    const OSSL_DISPATCH *fns; /* Keymgmt (to pilfer functions from) */
49
50
    /* The input structure name */
51
    const char *structure_name;
52
53
    /*
54
     * The EVP_PKEY_xxx type macro.  Should be zero for type specific
55
     * structures, non-zero when the outermost structure is PKCS#8 or
56
     * SubjectPublicKeyInfo.  This determines which of the function
57
     * pointers below will be used.
58
     */
59
    int evp_type;
60
61
    /* The selection mask for OSSL_FUNC_decoder_does_selection() */
62
    int selection_mask;
63
64
    /* For type specific decoders, we use the corresponding d2i */
65
    d2i_of_void *d2i_private_key; /* From type-specific DER */
66
    d2i_of_void *d2i_public_key;  /* From type-specific DER */
67
    d2i_of_void *d2i_key_params;  /* From type-specific DER */
68
    d2i_PKCS8_fn *d2i_PKCS8;      /* Wrapped in a PrivateKeyInfo */
69
    d2i_of_void *d2i_PUBKEY;      /* Wrapped in a SubjectPublicKeyInfo */
70
71
    /*
72
     * For any key, we may need to check that the key meets expectations.
73
     * This is useful when the same functions can decode several variants
74
     * of a key.
75
     */
76
    check_key_fn *check_key;
77
78
    /*
79
     * For any key, we may need to make provider specific adjustments, such
80
     * as ensure the key carries the correct library context.
81
     */
82
    adjust_key_fn *adjust_key;
83
    /* {type}_free() */
84
    free_key_fn *free_key;
85
};
86
87
/*
88
 * Context used for DER to key decoding.
89
 */
90
struct der2key_ctx_st {
91
    PROV_CTX *provctx;
92
    const struct keytype_desc_st *desc;
93
    /* The selection that is passed to der2key_decode() */
94
    int selection;
95
    /* Flag used to signal that a failure is fatal */
96
    unsigned int flag_fatal : 1;
97
};
98
99
typedef void *key_from_pkcs8_t(const PKCS8_PRIV_KEY_INFO *p8inf,
100
                               OSSL_LIB_CTX *libctx, const char *propq);
101
static void *der2key_decode_p8(const unsigned char **input_der,
102
                               long input_der_len, struct der2key_ctx_st *ctx,
103
                               key_from_pkcs8_t *key_from_pkcs8)
104
644k
{
105
644k
    PKCS8_PRIV_KEY_INFO *p8inf = NULL;
106
644k
    const X509_ALGOR *alg = NULL;
107
644k
    void *key = NULL;
108
109
644k
    if ((p8inf = d2i_PKCS8_PRIV_KEY_INFO(NULL, input_der, input_der_len)) != NULL
110
644k
        && PKCS8_pkey_get0(NULL, NULL, NULL, &alg, p8inf)
111
644k
        && (OBJ_obj2nid(alg->algorithm) == ctx->desc->evp_type
112
            /* Allow decoding sm2 private key with id_ecPublicKey */
113
15.1k
            || (OBJ_obj2nid(alg->algorithm) == NID_X9_62_id_ecPublicKey
114
8.11k
                && ctx->desc->evp_type == NID_sm2)))
115
7.35k
        key = key_from_pkcs8(p8inf, PROV_LIBCTX_OF(ctx->provctx), NULL);
116
644k
    PKCS8_PRIV_KEY_INFO_free(p8inf);
117
118
644k
    return key;
119
644k
}
120
121
/* ---------------------------------------------------------------------- */
122
123
static OSSL_FUNC_decoder_freectx_fn der2key_freectx;
124
static OSSL_FUNC_decoder_decode_fn der2key_decode;
125
static OSSL_FUNC_decoder_export_object_fn der2key_export_object;
126
127
static struct der2key_ctx_st *
128
der2key_newctx(void *provctx, const struct keytype_desc_st *desc)
129
5.33M
{
130
5.33M
    struct der2key_ctx_st *ctx = OPENSSL_zalloc(sizeof(*ctx));
131
132
5.33M
    if (ctx != NULL) {
133
5.33M
        ctx->provctx = provctx;
134
5.33M
        ctx->desc = desc;
135
5.33M
    }
136
5.33M
    return ctx;
137
5.33M
}
138
139
static void der2key_freectx(void *vctx)
140
5.33M
{
141
5.33M
    struct der2key_ctx_st *ctx = vctx;
142
143
5.33M
    OPENSSL_free(ctx);
144
5.33M
}
145
146
static int der2key_check_selection(int selection,
147
                                   const struct keytype_desc_st *desc)
148
16.3M
{
149
    /*
150
     * The selections are kinda sorta "levels", i.e. each selection given
151
     * here is assumed to include those following.
152
     */
153
16.3M
    int checks[] = {
154
16.3M
        OSSL_KEYMGMT_SELECT_PRIVATE_KEY,
155
16.3M
        OSSL_KEYMGMT_SELECT_PUBLIC_KEY,
156
16.3M
        OSSL_KEYMGMT_SELECT_ALL_PARAMETERS
157
16.3M
    };
158
16.3M
    size_t i;
159
160
    /* The decoder implementations made here support guessing */
161
16.3M
    if (selection == 0)
162
102
        return 1;
163
164
30.4M
    for (i = 0; i < OSSL_NELEM(checks); i++) {
165
30.4M
        int check1 = (selection & checks[i]) != 0;
166
30.4M
        int check2 = (desc->selection_mask & checks[i]) != 0;
167
168
        /*
169
         * If the caller asked for the currently checked bit(s), return
170
         * whether the decoder description says it's supported.
171
         */
172
30.4M
        if (check1)
173
16.3M
            return check2;
174
30.4M
    }
175
176
    /* This should be dead code, but just to be safe... */
177
0
    return 0;
178
16.3M
}
179
180
static int der2key_decode(void *vctx, OSSL_CORE_BIO *cin, int selection,
181
                          OSSL_CALLBACK *data_cb, void *data_cbarg,
182
                          OSSL_PASSPHRASE_CALLBACK *pw_cb, void *pw_cbarg)
183
2.83M
{
184
2.83M
    struct der2key_ctx_st *ctx = vctx;
185
2.83M
    unsigned char *der = NULL;
186
2.83M
    const unsigned char *derp;
187
2.83M
    long der_len = 0;
188
2.83M
    void *key = NULL;
189
2.83M
    int ok = 0;
190
191
2.83M
    ctx->selection = selection;
192
    /*
193
     * The caller is allowed to specify 0 as a selection mark, to have the
194
     * structure and key type guessed.  For type-specific structures, this
195
     * is not recommended, as some structures are very similar.
196
     * Note that 0 isn't the same as OSSL_KEYMGMT_SELECT_ALL, as the latter
197
     * signifies a private key structure, where everything else is assumed
198
     * to be present as well.
199
     */
200
2.83M
    if (selection == 0)
201
600k
        selection = ctx->desc->selection_mask;
202
2.83M
    if ((selection & ctx->desc->selection_mask) == 0) {
203
0
        ERR_raise(ERR_LIB_PROV, ERR_R_PASSED_INVALID_ARGUMENT);
204
0
        return 0;
205
0
    }
206
207
2.83M
    ok = ossl_read_der(ctx->provctx, cin, &der, &der_len);
208
2.83M
    if (!ok)
209
471k
        goto next;
210
211
2.36M
    ok = 0; /* Assume that we fail */
212
213
2.36M
    ERR_set_mark();
214
2.36M
    if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) {
215
1.32M
        derp = der;
216
1.32M
        if (ctx->desc->d2i_PKCS8 != NULL) {
217
913k
            key = ctx->desc->d2i_PKCS8(NULL, &derp, der_len, ctx);
218
913k
            if (ctx->flag_fatal) {
219
0
                ERR_clear_last_mark();
220
0
                goto end;
221
0
            }
222
913k
        } else if (ctx->desc->d2i_private_key != NULL) {
223
407k
            key = ctx->desc->d2i_private_key(NULL, &derp, der_len);
224
407k
        }
225
1.32M
        if (key == NULL && ctx->selection != 0) {
226
988k
            ERR_clear_last_mark();
227
988k
            goto next;
228
988k
        }
229
1.32M
    }
230
1.37M
    if (key == NULL && (selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) {
231
1.03M
        derp = der;
232
1.03M
        if (ctx->desc->d2i_PUBKEY != NULL)
233
985k
            key = ctx->desc->d2i_PUBKEY(NULL, &derp, der_len);
234
45.9k
        else if (ctx->desc->d2i_public_key != NULL)
235
45.9k
            key = ctx->desc->d2i_public_key(NULL, &derp, der_len);
236
1.03M
        if (key == NULL && ctx->selection != 0) {
237
399k
            ERR_clear_last_mark();
238
399k
            goto next;
239
399k
        }
240
1.03M
    }
241
976k
    if (key == NULL && (selection & OSSL_KEYMGMT_SELECT_ALL_PARAMETERS) != 0) {
242
76.1k
        derp = der;
243
76.1k
        if (ctx->desc->d2i_key_params != NULL)
244
76.1k
            key = ctx->desc->d2i_key_params(NULL, &derp, der_len);
245
76.1k
        if (key == NULL && ctx->selection != 0) {
246
0
            ERR_clear_last_mark();
247
0
            goto next;
248
0
        }
249
76.1k
    }
250
976k
    if (key == NULL)
251
511k
        ERR_clear_last_mark();
252
464k
    else
253
464k
        ERR_pop_to_mark();
254
255
    /*
256
     * Last minute check to see if this was the correct type of key.  This
257
     * should never lead to a fatal error, i.e. the decoding itself was
258
     * correct, it was just an unexpected key type.  This is generally for
259
     * classes of key types that have subtle variants, like RSA-PSS keys as
260
     * opposed to plain RSA keys.
261
     */
262
976k
    if (key != NULL
263
976k
        && ctx->desc->check_key != NULL
264
976k
        && !ctx->desc->check_key(key, ctx)) {
265
3.87k
        ctx->desc->free_key(key);
266
3.87k
        key = NULL;
267
3.87k
    }
268
269
976k
    if (key != NULL && ctx->desc->adjust_key != NULL)
270
460k
        ctx->desc->adjust_key(key, ctx);
271
272
2.83M
 next:
273
    /*
274
     * Indicated that we successfully decoded something, or not at all.
275
     * Ending up "empty handed" is not an error.
276
     */
277
2.83M
    ok = 1;
278
279
    /*
280
     * We free memory here so it's not held up during the callback, because
281
     * we know the process is recursive and the allocated chunks of memory
282
     * add up.
283
     */
284
2.83M
    OPENSSL_free(der);
285
2.83M
    der = NULL;
286
287
2.83M
    if (key != NULL) {
288
460k
        OSSL_PARAM params[4];
289
460k
        int object_type = OSSL_OBJECT_PKEY;
290
291
460k
        params[0] =
292
460k
            OSSL_PARAM_construct_int(OSSL_OBJECT_PARAM_TYPE, &object_type);
293
294
460k
#ifndef OPENSSL_NO_SM2
295
460k
        if (strcmp(ctx->desc->keytype_name, "EC") == 0
296
460k
            && (EC_KEY_get_flags(key) & EC_FLAG_SM2_RANGE) != 0)
297
7
            params[1] =
298
7
                OSSL_PARAM_construct_utf8_string(OSSL_OBJECT_PARAM_DATA_TYPE,
299
7
                                                 "SM2", 0);
300
460k
        else
301
460k
#endif
302
460k
            params[1] =
303
460k
                OSSL_PARAM_construct_utf8_string(OSSL_OBJECT_PARAM_DATA_TYPE,
304
460k
                                                 (char *)ctx->desc->keytype_name,
305
460k
                                                 0);
306
        /* The address of the key becomes the octet string */
307
460k
        params[2] =
308
460k
            OSSL_PARAM_construct_octet_string(OSSL_OBJECT_PARAM_REFERENCE,
309
460k
                                              &key, sizeof(key));
310
460k
        params[3] = OSSL_PARAM_construct_end();
311
312
460k
        ok = data_cb(params, data_cbarg);
313
460k
    }
314
315
2.83M
 end:
316
2.83M
    ctx->desc->free_key(key);
317
2.83M
    OPENSSL_free(der);
318
319
2.83M
    return ok;
320
2.83M
}
321
322
static int der2key_export_object(void *vctx,
323
                                 const void *reference, size_t reference_sz,
324
                                 OSSL_CALLBACK *export_cb, void *export_cbarg)
325
0
{
326
0
    struct der2key_ctx_st *ctx = vctx;
327
0
    OSSL_FUNC_keymgmt_export_fn *export =
328
0
        ossl_prov_get_keymgmt_export(ctx->desc->fns);
329
0
    void *keydata;
330
331
0
    if (reference_sz == sizeof(keydata) && export != NULL) {
332
0
        int selection = ctx->selection;
333
334
0
        if (selection == 0)
335
0
            selection = OSSL_KEYMGMT_SELECT_ALL;
336
        /* The contents of the reference is the address to our object */
337
0
        keydata = *(void **)reference;
338
339
0
        return export(keydata, selection, export_cb, export_cbarg);
340
0
    }
341
0
    return 0;
342
0
}
343
344
/* ---------------------------------------------------------------------- */
345
346
#ifndef OPENSSL_NO_DH
347
# define dh_evp_type                    EVP_PKEY_DH
348
# define dh_d2i_private_key             NULL
349
# define dh_d2i_public_key              NULL
350
# define dh_d2i_key_params              (d2i_of_void *)d2i_DHparams
351
352
static void *dh_d2i_PKCS8(void **key, const unsigned char **der, long der_len,
353
                          struct der2key_ctx_st *ctx)
354
111k
{
355
111k
    return der2key_decode_p8(der, der_len, ctx,
356
111k
                             (key_from_pkcs8_t *)ossl_dh_key_from_pkcs8);
357
111k
}
358
359
# define dh_d2i_PUBKEY                  (d2i_of_void *)ossl_d2i_DH_PUBKEY
360
# define dh_free                        (free_key_fn *)DH_free
361
# define dh_check                       NULL
362
363
static void dh_adjust(void *key, struct der2key_ctx_st *ctx)
364
35.1k
{
365
35.1k
    ossl_dh_set0_libctx(key, PROV_LIBCTX_OF(ctx->provctx));
366
35.1k
}
367
368
# define dhx_evp_type                   EVP_PKEY_DHX
369
# define dhx_d2i_private_key            NULL
370
# define dhx_d2i_public_key             NULL
371
# define dhx_d2i_key_params             (d2i_of_void *)d2i_DHxparams
372
# define dhx_d2i_PKCS8                  dh_d2i_PKCS8
373
# define dhx_d2i_PUBKEY                 (d2i_of_void *)ossl_d2i_DHx_PUBKEY
374
# define dhx_free                       (free_key_fn *)DH_free
375
# define dhx_check                      NULL
376
# define dhx_adjust                     dh_adjust
377
#endif
378
379
/* ---------------------------------------------------------------------- */
380
381
#ifndef OPENSSL_NO_DSA
382
# define dsa_evp_type                   EVP_PKEY_DSA
383
# define dsa_d2i_private_key            (d2i_of_void *)d2i_DSAPrivateKey
384
# define dsa_d2i_public_key             (d2i_of_void *)d2i_DSAPublicKey
385
# define dsa_d2i_key_params             (d2i_of_void *)d2i_DSAparams
386
387
static void *dsa_d2i_PKCS8(void **key, const unsigned char **der, long der_len,
388
                           struct der2key_ctx_st *ctx)
389
55.4k
{
390
55.4k
    return der2key_decode_p8(der, der_len, ctx,
391
55.4k
                             (key_from_pkcs8_t *)ossl_dsa_key_from_pkcs8);
392
55.4k
}
393
394
# define dsa_d2i_PUBKEY                 (d2i_of_void *)ossl_d2i_DSA_PUBKEY
395
# define dsa_free                       (free_key_fn *)DSA_free
396
# define dsa_check                      NULL
397
398
static void dsa_adjust(void *key, struct der2key_ctx_st *ctx)
399
63.8k
{
400
63.8k
    ossl_dsa_set0_libctx(key, PROV_LIBCTX_OF(ctx->provctx));
401
63.8k
}
402
#endif
403
404
/* ---------------------------------------------------------------------- */
405
406
#ifndef OPENSSL_NO_EC
407
# define ec_evp_type                    EVP_PKEY_EC
408
# define ec_d2i_private_key             (d2i_of_void *)d2i_ECPrivateKey
409
# define ec_d2i_public_key              NULL
410
# define ec_d2i_key_params              (d2i_of_void *)d2i_ECParameters
411
412
static void *ec_d2i_PKCS8(void **key, const unsigned char **der, long der_len,
413
                          struct der2key_ctx_st *ctx)
414
55.5k
{
415
55.5k
    return der2key_decode_p8(der, der_len, ctx,
416
55.5k
                             (key_from_pkcs8_t *)ossl_ec_key_from_pkcs8);
417
55.5k
}
418
419
# define ec_d2i_PUBKEY                  (d2i_of_void *)d2i_EC_PUBKEY
420
# define ec_free                        (free_key_fn *)EC_KEY_free
421
422
static int ec_check(void *key, struct der2key_ctx_st *ctx)
423
257k
{
424
    /* We're trying to be clever by comparing two truths */
425
257k
    int ret = 0;
426
257k
    int sm2 = (EC_KEY_get_flags(key) & EC_FLAG_SM2_RANGE) != 0;
427
428
257k
    if (sm2)
429
7.59k
        ret = ctx->desc->evp_type == EVP_PKEY_SM2
430
7.59k
            || ctx->desc->evp_type == NID_X9_62_id_ecPublicKey;
431
250k
    else
432
250k
        ret = ctx->desc->evp_type != EVP_PKEY_SM2;
433
434
257k
    return ret;
435
257k
}
436
437
static void ec_adjust(void *key, struct der2key_ctx_st *ctx)
438
254k
{
439
254k
    ossl_ec_key_set0_libctx(key, PROV_LIBCTX_OF(ctx->provctx));
440
254k
}
441
442
/*
443
 * ED25519, ED448, X25519, X448 only implement PKCS#8 and SubjectPublicKeyInfo,
444
 * so no d2i functions to be had.
445
 */
446
447
static void *ecx_d2i_PKCS8(void **key, const unsigned char **der, long der_len,
448
                           struct der2key_ctx_st *ctx)
449
246k
{
450
246k
    return der2key_decode_p8(der, der_len, ctx,
451
246k
                             (key_from_pkcs8_t *)ossl_ecx_key_from_pkcs8);
452
246k
}
453
454
static void ecx_key_adjust(void *key, struct der2key_ctx_st *ctx)
455
3.74k
{
456
3.74k
    ossl_ecx_key_set0_libctx(key, PROV_LIBCTX_OF(ctx->provctx));
457
3.74k
}
458
459
# define ed25519_evp_type               EVP_PKEY_ED25519
460
# define ed25519_d2i_private_key        NULL
461
# define ed25519_d2i_public_key         NULL
462
# define ed25519_d2i_key_params         NULL
463
# define ed25519_d2i_PKCS8              ecx_d2i_PKCS8
464
# define ed25519_d2i_PUBKEY             (d2i_of_void *)ossl_d2i_ED25519_PUBKEY
465
# define ed25519_free                   (free_key_fn *)ossl_ecx_key_free
466
# define ed25519_check                  NULL
467
# define ed25519_adjust                 ecx_key_adjust
468
469
# define ed448_evp_type                 EVP_PKEY_ED448
470
# define ed448_d2i_private_key          NULL
471
# define ed448_d2i_public_key           NULL
472
# define ed448_d2i_key_params           NULL
473
# define ed448_d2i_PKCS8                ecx_d2i_PKCS8
474
# define ed448_d2i_PUBKEY               (d2i_of_void *)ossl_d2i_ED448_PUBKEY
475
# define ed448_free                     (free_key_fn *)ossl_ecx_key_free
476
# define ed448_check                    NULL
477
# define ed448_adjust                   ecx_key_adjust
478
479
# define x25519_evp_type                EVP_PKEY_X25519
480
# define x25519_d2i_private_key         NULL
481
# define x25519_d2i_public_key          NULL
482
# define x25519_d2i_key_params          NULL
483
# define x25519_d2i_PKCS8               ecx_d2i_PKCS8
484
# define x25519_d2i_PUBKEY              (d2i_of_void *)ossl_d2i_X25519_PUBKEY
485
# define x25519_free                    (free_key_fn *)ossl_ecx_key_free
486
# define x25519_check                   NULL
487
# define x25519_adjust                  ecx_key_adjust
488
489
# define x448_evp_type                  EVP_PKEY_X448
490
# define x448_d2i_private_key           NULL
491
# define x448_d2i_public_key            NULL
492
# define x448_d2i_key_params            NULL
493
# define x448_d2i_PKCS8                 ecx_d2i_PKCS8
494
# define x448_d2i_PUBKEY                (d2i_of_void *)ossl_d2i_X448_PUBKEY
495
# define x448_free                      (free_key_fn *)ossl_ecx_key_free
496
# define x448_check                     NULL
497
# define x448_adjust                    ecx_key_adjust
498
499
# ifndef OPENSSL_NO_SM2
500
#  define sm2_evp_type                  EVP_PKEY_SM2
501
#  define sm2_d2i_private_key           (d2i_of_void *)d2i_ECPrivateKey
502
#  define sm2_d2i_public_key            NULL
503
#  define sm2_d2i_key_params            (d2i_of_void *)d2i_ECParameters
504
505
static void *sm2_d2i_PKCS8(void **key, const unsigned char **der, long der_len,
506
                           struct der2key_ctx_st *ctx)
507
61.9k
{
508
61.9k
    return der2key_decode_p8(der, der_len, ctx,
509
61.9k
                             (key_from_pkcs8_t *)ossl_ec_key_from_pkcs8);
510
61.9k
}
511
512
#  define sm2_d2i_PUBKEY                (d2i_of_void *)d2i_EC_PUBKEY
513
#  define sm2_free                      (free_key_fn *)EC_KEY_free
514
#  define sm2_check                     ec_check
515
#  define sm2_adjust                    ec_adjust
516
# endif
517
#endif
518
519
/* ---------------------------------------------------------------------- */
520
521
#define rsa_evp_type                    EVP_PKEY_RSA
522
#define rsa_d2i_private_key             (d2i_of_void *)d2i_RSAPrivateKey
523
#define rsa_d2i_public_key              (d2i_of_void *)d2i_RSAPublicKey
524
#define rsa_d2i_key_params              NULL
525
526
static void *rsa_d2i_PKCS8(void **key, const unsigned char **der, long der_len,
527
                           struct der2key_ctx_st *ctx)
528
113k
{
529
113k
    return der2key_decode_p8(der, der_len, ctx,
530
113k
                             (key_from_pkcs8_t *)ossl_rsa_key_from_pkcs8);
531
113k
}
532
533
#define rsa_d2i_PUBKEY                  (d2i_of_void *)d2i_RSA_PUBKEY
534
#define rsa_free                        (free_key_fn *)RSA_free
535
536
static int rsa_check(void *key, struct der2key_ctx_st *ctx)
537
75.0k
{
538
75.0k
    switch (RSA_test_flags(key, RSA_FLAG_TYPE_MASK)) {
539
39.6k
    case RSA_FLAG_TYPE_RSA:
540
39.6k
        return ctx->desc->evp_type == EVP_PKEY_RSA;
541
35.3k
    case RSA_FLAG_TYPE_RSASSAPSS:
542
35.3k
        return ctx->desc->evp_type == EVP_PKEY_RSA_PSS;
543
75.0k
    }
544
545
    /* Currently unsupported RSA key type */
546
0
    return 0;
547
75.0k
}
548
549
static void rsa_adjust(void *key, struct der2key_ctx_st *ctx)
550
103k
{
551
103k
    ossl_rsa_set0_libctx(key, PROV_LIBCTX_OF(ctx->provctx));
552
103k
}
553
554
#define rsapss_evp_type                 EVP_PKEY_RSA_PSS
555
#define rsapss_d2i_private_key          (d2i_of_void *)d2i_RSAPrivateKey
556
#define rsapss_d2i_public_key           (d2i_of_void *)d2i_RSAPublicKey
557
#define rsapss_d2i_key_params           NULL
558
#define rsapss_d2i_PKCS8                rsa_d2i_PKCS8
559
#define rsapss_d2i_PUBKEY               (d2i_of_void *)d2i_RSA_PUBKEY
560
#define rsapss_free                     (free_key_fn *)RSA_free
561
#define rsapss_check                    rsa_check
562
#define rsapss_adjust                   rsa_adjust
563
564
/* ---------------------------------------------------------------------- */
565
566
/*
567
 * The DO_ macros help define the selection mask and the method functions
568
 * for each kind of object we want to decode.
569
 */
570
#define DO_type_specific_keypair(keytype)               \
571
    "type-specific", keytype##_evp_type,                \
572
        ( OSSL_KEYMGMT_SELECT_KEYPAIR ),                \
573
        keytype##_d2i_private_key,                      \
574
        keytype##_d2i_public_key,                       \
575
        NULL,                                           \
576
        NULL,                                           \
577
        NULL,                                           \
578
        keytype##_check,                                \
579
        keytype##_adjust,                               \
580
        keytype##_free
581
582
#define DO_type_specific_pub(keytype)                   \
583
    "type-specific", keytype##_evp_type,                \
584
        ( OSSL_KEYMGMT_SELECT_PUBLIC_KEY ),             \
585
        NULL,                                           \
586
        keytype##_d2i_public_key,                       \
587
        NULL,                                           \
588
        NULL,                                           \
589
        NULL,                                           \
590
        keytype##_check,                                \
591
        keytype##_adjust,                               \
592
        keytype##_free
593
594
#define DO_type_specific_priv(keytype)                  \
595
    "type-specific", keytype##_evp_type,                \
596
        ( OSSL_KEYMGMT_SELECT_PRIVATE_KEY ),            \
597
        keytype##_d2i_private_key,                      \
598
        NULL,                                           \
599
        NULL,                                           \
600
        NULL,                                           \
601
        NULL,                                           \
602
        keytype##_check,                                \
603
        keytype##_adjust,                               \
604
        keytype##_free
605
606
#define DO_type_specific_params(keytype)                \
607
    "type-specific", keytype##_evp_type,                \
608
        ( OSSL_KEYMGMT_SELECT_ALL_PARAMETERS ),         \
609
        NULL,                                           \
610
        NULL,                                           \
611
        keytype##_d2i_key_params,                       \
612
        NULL,                                           \
613
        NULL,                                           \
614
        keytype##_check,                                \
615
        keytype##_adjust,                               \
616
        keytype##_free
617
618
#define DO_type_specific(keytype)                       \
619
    "type-specific", keytype##_evp_type,                \
620
        ( OSSL_KEYMGMT_SELECT_ALL ),                    \
621
        keytype##_d2i_private_key,                      \
622
        keytype##_d2i_public_key,                       \
623
        keytype##_d2i_key_params,                       \
624
        NULL,                                           \
625
        NULL,                                           \
626
        keytype##_check,                                \
627
        keytype##_adjust,                               \
628
        keytype##_free
629
630
#define DO_type_specific_no_pub(keytype)                \
631
    "type-specific", keytype##_evp_type,                \
632
        ( OSSL_KEYMGMT_SELECT_PRIVATE_KEY               \
633
          | OSSL_KEYMGMT_SELECT_ALL_PARAMETERS ),       \
634
        keytype##_d2i_private_key,                      \
635
        NULL,                                           \
636
        keytype##_d2i_key_params,                       \
637
        NULL,                                           \
638
        NULL,                                           \
639
        keytype##_check,                                \
640
        keytype##_adjust,                               \
641
        keytype##_free
642
643
#define DO_PrivateKeyInfo(keytype)                      \
644
    "PrivateKeyInfo", keytype##_evp_type,               \
645
        ( OSSL_KEYMGMT_SELECT_PRIVATE_KEY ),            \
646
        NULL,                                           \
647
        NULL,                                           \
648
        NULL,                                           \
649
        keytype##_d2i_PKCS8,                            \
650
        NULL,                                           \
651
        keytype##_check,                                \
652
        keytype##_adjust,                               \
653
        keytype##_free
654
655
#define DO_SubjectPublicKeyInfo(keytype)                \
656
    "SubjectPublicKeyInfo", keytype##_evp_type,         \
657
        ( OSSL_KEYMGMT_SELECT_PUBLIC_KEY ),             \
658
        NULL,                                           \
659
        NULL,                                           \
660
        NULL,                                           \
661
        NULL,                                           \
662
        keytype##_d2i_PUBKEY,                           \
663
        keytype##_check,                                \
664
        keytype##_adjust,                               \
665
        keytype##_free
666
667
#define DO_DH(keytype)                                  \
668
    "DH", keytype##_evp_type,                           \
669
        ( OSSL_KEYMGMT_SELECT_ALL_PARAMETERS ),         \
670
        NULL,                                           \
671
        NULL,                                           \
672
        keytype##_d2i_key_params,                       \
673
        NULL,                                           \
674
        NULL,                                           \
675
        keytype##_check,                                \
676
        keytype##_adjust,                               \
677
        keytype##_free
678
679
#define DO_DHX(keytype)                                 \
680
    "DHX", keytype##_evp_type,                          \
681
        ( OSSL_KEYMGMT_SELECT_ALL_PARAMETERS ),         \
682
        NULL,                                           \
683
        NULL,                                           \
684
        keytype##_d2i_key_params,                       \
685
        NULL,                                           \
686
        NULL,                                           \
687
        keytype##_check,                                \
688
        keytype##_adjust,                               \
689
        keytype##_free
690
691
#define DO_DSA(keytype)                                 \
692
    "DSA", keytype##_evp_type,                          \
693
        ( OSSL_KEYMGMT_SELECT_ALL ),                    \
694
        keytype##_d2i_private_key,                      \
695
        keytype##_d2i_public_key,                       \
696
        keytype##_d2i_key_params,                       \
697
        NULL,                                           \
698
        NULL,                                           \
699
        keytype##_check,                                \
700
        keytype##_adjust,                               \
701
        keytype##_free
702
703
#define DO_EC(keytype)                                  \
704
    "EC", keytype##_evp_type,                           \
705
        ( OSSL_KEYMGMT_SELECT_PRIVATE_KEY               \
706
          | OSSL_KEYMGMT_SELECT_ALL_PARAMETERS ),       \
707
        keytype##_d2i_private_key,                      \
708
        NULL,                                           \
709
        keytype##_d2i_key_params,                       \
710
        NULL,                                           \
711
        NULL,                                           \
712
        keytype##_check,                                \
713
        keytype##_adjust,                               \
714
        keytype##_free
715
716
#define DO_RSA(keytype)                                 \
717
    "RSA", keytype##_evp_type,                          \
718
        ( OSSL_KEYMGMT_SELECT_KEYPAIR ),                \
719
        keytype##_d2i_private_key,                      \
720
        keytype##_d2i_public_key,                       \
721
        NULL,                                           \
722
        NULL,                                           \
723
        NULL,                                           \
724
        keytype##_check,                                \
725
        keytype##_adjust,                               \
726
        keytype##_free
727
728
/*
729
 * MAKE_DECODER is the single driver for creating OSSL_DISPATCH tables.
730
 * It takes the following arguments:
731
 *
732
 * keytype_name The implementation key type as a string.
733
 * keytype      The implementation key type.  This must correspond exactly
734
 *              to our existing keymgmt keytype names...  in other words,
735
 *              there must exist an ossl_##keytype##_keymgmt_functions.
736
 * type         The type name for the set of functions that implement the
737
 *              decoder for the key type.  This isn't necessarily the same
738
 *              as keytype.  For example, the key types ed25519, ed448,
739
 *              x25519 and x448 are all handled by the same functions with
740
 *              the common type name ecx.
741
 * kind         The kind of support to implement.  This translates into
742
 *              the DO_##kind macros above, to populate the keytype_desc_st
743
 *              structure.
744
 */
745
#define MAKE_DECODER(keytype_name, keytype, type, kind)                 \
746
    static const struct keytype_desc_st kind##_##keytype##_desc =       \
747
        { keytype_name, ossl_##keytype##_keymgmt_functions,             \
748
          DO_##kind(keytype) };                                         \
749
                                                                        \
750
    static OSSL_FUNC_decoder_newctx_fn kind##_der2##keytype##_newctx;   \
751
                                                                        \
752
    static void *kind##_der2##keytype##_newctx(void *provctx)           \
753
4.29M
    {                                                                   \
754
4.29M
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
4.29M
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2dh_newctx
Line
Count
Source
753
145k
    {                                                                   \
754
145k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
145k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2dh_newctx
Line
Count
Source
753
39.2k
    {                                                                   \
754
39.2k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
39.2k
    }                                                                   \
decode_der2key.c:type_specific_params_der2dh_newctx
Line
Count
Source
753
16.4k
    {                                                                   \
754
16.4k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
16.4k
    }                                                                   \
decode_der2key.c:DH_der2dh_newctx
Line
Count
Source
753
16.4k
    {                                                                   \
754
16.4k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
16.4k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2dhx_newctx
Line
Count
Source
753
145k
    {                                                                   \
754
145k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
145k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2dhx_newctx
Line
Count
Source
753
62.5k
    {                                                                   \
754
62.5k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
62.5k
    }                                                                   \
decode_der2key.c:type_specific_params_der2dhx_newctx
Line
Count
Source
753
16.4k
    {                                                                   \
754
16.4k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
16.4k
    }                                                                   \
decode_der2key.c:DHX_der2dhx_newctx
Line
Count
Source
753
16.4k
    {                                                                   \
754
16.4k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
16.4k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2dsa_newctx
Line
Count
Source
753
147k
    {                                                                   \
754
147k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
147k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2dsa_newctx
Line
Count
Source
753
126k
    {                                                                   \
754
126k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
126k
    }                                                                   \
decode_der2key.c:type_specific_der2dsa_newctx
Line
Count
Source
753
257k
    {                                                                   \
754
257k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
257k
    }                                                                   \
decode_der2key.c:DSA_der2dsa_newctx
Line
Count
Source
753
257k
    {                                                                   \
754
257k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
257k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2ec_newctx
Line
Count
Source
753
145k
    {                                                                   \
754
145k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
145k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2ec_newctx
Line
Count
Source
753
458k
    {                                                                   \
754
458k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
458k
    }                                                                   \
decode_der2key.c:type_specific_no_pub_der2ec_newctx
Line
Count
Source
753
145k
    {                                                                   \
754
145k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
145k
    }                                                                   \
decode_der2key.c:EC_der2ec_newctx
Line
Count
Source
753
145k
    {                                                                   \
754
145k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
145k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2x25519_newctx
Line
Count
Source
753
145k
    {                                                                   \
754
145k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
145k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2x25519_newctx
Line
Count
Source
753
17.5k
    {                                                                   \
754
17.5k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
17.5k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2x448_newctx
Line
Count
Source
753
145k
    {                                                                   \
754
145k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
145k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2x448_newctx
Line
Count
Source
753
25.4k
    {                                                                   \
754
25.4k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
25.4k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2ed25519_newctx
Line
Count
Source
753
145k
    {                                                                   \
754
145k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
145k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2ed25519_newctx
Line
Count
Source
753
30.3k
    {                                                                   \
754
30.3k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
30.3k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2ed448_newctx
Line
Count
Source
753
145k
    {                                                                   \
754
145k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
145k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2ed448_newctx
Line
Count
Source
753
18.1k
    {                                                                   \
754
18.1k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
18.1k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2sm2_newctx
Line
Count
Source
753
145k
    {                                                                   \
754
145k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
145k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2sm2_newctx
Line
Count
Source
753
458k
    {                                                                   \
754
458k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
458k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2rsa_newctx
Line
Count
Source
753
145k
    {                                                                   \
754
145k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
145k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2rsa_newctx
Line
Count
Source
753
84.7k
    {                                                                   \
754
84.7k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
84.7k
    }                                                                   \
decode_der2key.c:type_specific_keypair_der2rsa_newctx
Line
Count
Source
753
213k
    {                                                                   \
754
213k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
213k
    }                                                                   \
decode_der2key.c:RSA_der2rsa_newctx
Line
Count
Source
753
213k
    {                                                                   \
754
213k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
213k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2rsapss_newctx
Line
Count
Source
753
145k
    {                                                                   \
754
145k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
145k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2rsapss_newctx
Line
Count
Source
753
63.6k
    {                                                                   \
754
63.6k
        return der2key_newctx(provctx, &kind##_##keytype##_desc);       \
755
63.6k
    }                                                                   \
756
    static int kind##_der2##keytype##_does_selection(void *provctx,     \
757
                                                     int selection)     \
758
16.1M
    {                                                                   \
759
16.1M
        return der2key_check_selection(selection,                       \
760
16.1M
                                       &kind##_##keytype##_desc);       \
761
16.1M
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2dh_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2dh_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:type_specific_params_der2dh_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:DH_der2dh_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2dhx_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2dhx_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:type_specific_params_der2dhx_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:DHX_der2dhx_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2dsa_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2dsa_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:type_specific_der2dsa_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:DSA_der2dsa_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2ec_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2ec_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:type_specific_no_pub_der2ec_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:EC_der2ec_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2x25519_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2x25519_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2x448_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2x448_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2ed25519_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2ed25519_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2ed448_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2ed448_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2sm2_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2sm2_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2rsa_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2rsa_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:type_specific_keypair_der2rsa_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:RSA_der2rsa_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:PrivateKeyInfo_der2rsapss_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
decode_der2key.c:SubjectPublicKeyInfo_der2rsapss_does_selection
Line
Count
Source
758
506k
    {                                                                   \
759
506k
        return der2key_check_selection(selection,                       \
760
506k
                                       &kind##_##keytype##_desc);       \
761
506k
    }                                                                   \
762
    const OSSL_DISPATCH                                                 \
763
    ossl_##kind##_der_to_##keytype##_decoder_functions[] = {            \
764
        { OSSL_FUNC_DECODER_NEWCTX,                                     \
765
          (void (*)(void))kind##_der2##keytype##_newctx },              \
766
        { OSSL_FUNC_DECODER_FREECTX,                                    \
767
          (void (*)(void))der2key_freectx },                            \
768
        { OSSL_FUNC_DECODER_DOES_SELECTION,                             \
769
          (void (*)(void))kind##_der2##keytype##_does_selection },      \
770
        { OSSL_FUNC_DECODER_DECODE,                                     \
771
          (void (*)(void))der2key_decode },                             \
772
        { OSSL_FUNC_DECODER_EXPORT_OBJECT,                              \
773
          (void (*)(void))der2key_export_object },                      \
774
        { 0, NULL }                                                     \
775
    }
776
777
#ifndef OPENSSL_NO_DH
778
MAKE_DECODER("DH", dh, dh, PrivateKeyInfo);
779
MAKE_DECODER("DH", dh, dh, SubjectPublicKeyInfo);
780
MAKE_DECODER("DH", dh, dh, type_specific_params);
781
MAKE_DECODER("DH", dh, dh, DH);
782
MAKE_DECODER("DHX", dhx, dhx, PrivateKeyInfo);
783
MAKE_DECODER("DHX", dhx, dhx, SubjectPublicKeyInfo);
784
MAKE_DECODER("DHX", dhx, dhx, type_specific_params);
785
MAKE_DECODER("DHX", dhx, dhx, DHX);
786
#endif
787
#ifndef OPENSSL_NO_DSA
788
MAKE_DECODER("DSA", dsa, dsa, PrivateKeyInfo);
789
MAKE_DECODER("DSA", dsa, dsa, SubjectPublicKeyInfo);
790
MAKE_DECODER("DSA", dsa, dsa, type_specific);
791
MAKE_DECODER("DSA", dsa, dsa, DSA);
792
#endif
793
#ifndef OPENSSL_NO_EC
794
MAKE_DECODER("EC", ec, ec, PrivateKeyInfo);
795
MAKE_DECODER("EC", ec, ec, SubjectPublicKeyInfo);
796
MAKE_DECODER("EC", ec, ec, type_specific_no_pub);
797
MAKE_DECODER("EC", ec, ec, EC);
798
MAKE_DECODER("X25519", x25519, ecx, PrivateKeyInfo);
799
MAKE_DECODER("X25519", x25519, ecx, SubjectPublicKeyInfo);
800
MAKE_DECODER("X448", x448, ecx, PrivateKeyInfo);
801
MAKE_DECODER("X448", x448, ecx, SubjectPublicKeyInfo);
802
MAKE_DECODER("ED25519", ed25519, ecx, PrivateKeyInfo);
803
MAKE_DECODER("ED25519", ed25519, ecx, SubjectPublicKeyInfo);
804
MAKE_DECODER("ED448", ed448, ecx, PrivateKeyInfo);
805
MAKE_DECODER("ED448", ed448, ecx, SubjectPublicKeyInfo);
806
# ifndef OPENSSL_NO_SM2
807
MAKE_DECODER("SM2", sm2, ec, PrivateKeyInfo);
808
MAKE_DECODER("SM2", sm2, ec, SubjectPublicKeyInfo);
809
# endif
810
#endif
811
MAKE_DECODER("RSA", rsa, rsa, PrivateKeyInfo);
812
MAKE_DECODER("RSA", rsa, rsa, SubjectPublicKeyInfo);
813
MAKE_DECODER("RSA", rsa, rsa, type_specific_keypair);
814
MAKE_DECODER("RSA", rsa, rsa, RSA);
815
MAKE_DECODER("RSA-PSS", rsapss, rsapss, PrivateKeyInfo);
816
MAKE_DECODER("RSA-PSS", rsapss, rsapss, SubjectPublicKeyInfo);