2 * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
5 /* ====================================================================
6 * Copyright (c) 2006 The OpenSSL Project. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * licensing@OpenSSL.org.
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
34 * 6. Redistributions of any form whatsoever must retain the following
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
60 #include "internal/cryptlib.h"
61 #include <openssl/x509.h>
62 #include <openssl/asn1.h>
63 #include <openssl/dh.h>
64 #include <openssl/bn.h>
65 #include "internal/asn1_int.h"
66 #ifndef OPENSSL_NO_CMS
67 # include <openssl/cms.h>
71 * i2d/d2i like DH parameter functions which use the appropriate routine for
72 * PKCS#3 DH or X9.42 DH.
75 static DH *d2i_dhp(const EVP_PKEY *pkey, const unsigned char **pp,
78 if (pkey->ameth == &dhx_asn1_meth)
79 return d2i_DHxparams(NULL, pp, length);
80 return d2i_DHparams(NULL, pp, length);
83 static int i2d_dhp(const EVP_PKEY *pkey, const DH *a, unsigned char **pp)
85 if (pkey->ameth == &dhx_asn1_meth)
86 return i2d_DHxparams(a, pp);
87 return i2d_DHparams(a, pp);
90 static void int_dh_free(EVP_PKEY *pkey)
92 DH_free(pkey->pkey.dh);
95 static int dh_pub_decode(EVP_PKEY *pkey, X509_PUBKEY *pubkey)
97 const unsigned char *p, *pm;
103 ASN1_INTEGER *public_key = NULL;
107 if (!X509_PUBKEY_get0_param(NULL, &p, &pklen, &palg, pubkey))
109 X509_ALGOR_get0(NULL, &ptype, &pval, palg);
111 if (ptype != V_ASN1_SEQUENCE) {
112 DHerr(DH_F_DH_PUB_DECODE, DH_R_PARAMETER_ENCODING_ERROR);
118 pmlen = pstr->length;
120 if ((dh = d2i_dhp(pkey, &pm, pmlen)) == NULL) {
121 DHerr(DH_F_DH_PUB_DECODE, DH_R_DECODE_ERROR);
125 if ((public_key = d2i_ASN1_INTEGER(NULL, &p, pklen)) == NULL) {
126 DHerr(DH_F_DH_PUB_DECODE, DH_R_DECODE_ERROR);
130 /* We have parameters now set public key */
131 if ((dh->pub_key = ASN1_INTEGER_to_BN(public_key, NULL)) == NULL) {
132 DHerr(DH_F_DH_PUB_DECODE, DH_R_BN_DECODE_ERROR);
136 ASN1_INTEGER_free(public_key);
137 EVP_PKEY_assign(pkey, pkey->ameth->pkey_id, dh);
141 ASN1_INTEGER_free(public_key);
147 static int dh_pub_encode(X509_PUBKEY *pk, const EVP_PKEY *pkey)
151 unsigned char *penc = NULL;
154 ASN1_INTEGER *pub_key = NULL;
158 str = ASN1_STRING_new();
160 DHerr(DH_F_DH_PUB_ENCODE, ERR_R_MALLOC_FAILURE);
163 str->length = i2d_dhp(pkey, dh, &str->data);
164 if (str->length <= 0) {
165 DHerr(DH_F_DH_PUB_ENCODE, ERR_R_MALLOC_FAILURE);
168 ptype = V_ASN1_SEQUENCE;
170 pub_key = BN_to_ASN1_INTEGER(dh->pub_key, NULL);
174 penclen = i2d_ASN1_INTEGER(pub_key, &penc);
176 ASN1_INTEGER_free(pub_key);
179 DHerr(DH_F_DH_PUB_ENCODE, ERR_R_MALLOC_FAILURE);
183 if (X509_PUBKEY_set0_param(pk, OBJ_nid2obj(pkey->ameth->pkey_id),
184 ptype, str, penc, penclen))
189 ASN1_STRING_free(str);
195 * PKCS#8 DH is defined in PKCS#11 of all places. It is similar to DH in that
196 * the AlgorithmIdentifier contains the parameters, the private key is
197 * explcitly included and the pubkey must be recalculated.
200 static int dh_priv_decode(EVP_PKEY *pkey, PKCS8_PRIV_KEY_INFO *p8)
202 const unsigned char *p, *pm;
208 ASN1_INTEGER *privkey = NULL;
212 if (!PKCS8_pkey_get0(NULL, &p, &pklen, &palg, p8))
215 X509_ALGOR_get0(NULL, &ptype, &pval, palg);
217 if (ptype != V_ASN1_SEQUENCE)
219 if ((privkey = d2i_ASN1_INTEGER(NULL, &p, pklen)) == NULL)
224 pmlen = pstr->length;
225 if ((dh = d2i_dhp(pkey, &pm, pmlen)) == NULL)
228 /* We have parameters now set private key */
229 if ((dh->priv_key = BN_secure_new()) == NULL
230 || !ASN1_INTEGER_to_BN(privkey, dh->priv_key)) {
231 DHerr(DH_F_DH_PRIV_DECODE, DH_R_BN_ERROR);
234 /* Calculate public key */
235 if (!DH_generate_key(dh))
238 EVP_PKEY_assign(pkey, pkey->ameth->pkey_id, dh);
240 ASN1_STRING_clear_free(privkey);
245 DHerr(DH_F_DH_PRIV_DECODE, EVP_R_DECODE_ERROR);
248 ASN1_STRING_clear_free(privkey);
252 static int dh_priv_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey)
254 ASN1_STRING *params = NULL;
255 ASN1_INTEGER *prkey = NULL;
256 unsigned char *dp = NULL;
259 params = ASN1_STRING_new();
261 if (params == NULL) {
262 DHerr(DH_F_DH_PRIV_ENCODE, ERR_R_MALLOC_FAILURE);
266 params->length = i2d_dhp(pkey, pkey->pkey.dh, ¶ms->data);
267 if (params->length <= 0) {
268 DHerr(DH_F_DH_PRIV_ENCODE, ERR_R_MALLOC_FAILURE);
271 params->type = V_ASN1_SEQUENCE;
273 /* Get private key into integer */
274 prkey = BN_to_ASN1_INTEGER(pkey->pkey.dh->priv_key, NULL);
277 DHerr(DH_F_DH_PRIV_ENCODE, DH_R_BN_ERROR);
281 dplen = i2d_ASN1_INTEGER(prkey, &dp);
283 ASN1_STRING_clear_free(prkey);
286 if (!PKCS8_pkey_set0(p8, OBJ_nid2obj(pkey->ameth->pkey_id), 0,
287 V_ASN1_SEQUENCE, params, dp, dplen))
294 ASN1_STRING_free(params);
295 ASN1_STRING_clear_free(prkey);
299 static void update_buflen(const BIGNUM *b, size_t *pbuflen)
304 if (*pbuflen < (i = (size_t)BN_num_bytes(b)))
308 static int dh_param_decode(EVP_PKEY *pkey,
309 const unsigned char **pder, int derlen)
313 if ((dh = d2i_dhp(pkey, pder, derlen)) == NULL) {
314 DHerr(DH_F_DH_PARAM_DECODE, ERR_R_DH_LIB);
317 EVP_PKEY_assign(pkey, pkey->ameth->pkey_id, dh);
321 static int dh_param_encode(const EVP_PKEY *pkey, unsigned char **pder)
323 return i2d_dhp(pkey, pkey->pkey.dh, pder);
326 static int do_dh_print(BIO *bp, const DH *x, int indent,
327 ASN1_PCTX *ctx, int ptype)
329 unsigned char *m = NULL;
330 int reason = ERR_R_BUF_LIB;
333 const char *ktype = NULL;
335 BIGNUM *priv_key, *pub_key;
338 priv_key = x->priv_key;
343 pub_key = x->pub_key;
347 update_buflen(x->p, &buf_len);
350 reason = ERR_R_PASSED_NULL_PARAMETER;
354 update_buflen(x->g, &buf_len);
355 update_buflen(x->q, &buf_len);
356 update_buflen(x->j, &buf_len);
357 update_buflen(x->counter, &buf_len);
358 update_buflen(pub_key, &buf_len);
359 update_buflen(priv_key, &buf_len);
362 ktype = "DH Private-Key";
364 ktype = "DH Public-Key";
366 ktype = "DH Parameters";
368 m = OPENSSL_malloc(buf_len + 10);
370 reason = ERR_R_MALLOC_FAILURE;
374 BIO_indent(bp, indent, 128);
375 if (BIO_printf(bp, "%s: (%d bit)\n", ktype, BN_num_bits(x->p)) <= 0)
379 if (!ASN1_bn_print(bp, "private-key:", priv_key, m, indent))
381 if (!ASN1_bn_print(bp, "public-key:", pub_key, m, indent))
384 if (!ASN1_bn_print(bp, "prime:", x->p, m, indent))
386 if (!ASN1_bn_print(bp, "generator:", x->g, m, indent))
388 if (x->q && !ASN1_bn_print(bp, "subgroup order:", x->q, m, indent))
390 if (x->j && !ASN1_bn_print(bp, "subgroup factor:", x->j, m, indent))
394 BIO_indent(bp, indent, 128);
395 BIO_puts(bp, "seed:");
396 for (i = 0; i < x->seedlen; i++) {
398 if (BIO_puts(bp, "\n") <= 0
399 || !BIO_indent(bp, indent + 4, 128))
402 if (BIO_printf(bp, "%02x%s", x->seed[i],
403 ((i + 1) == x->seedlen) ? "" : ":") <= 0)
406 if (BIO_write(bp, "\n", 1) <= 0)
409 if (x->counter && !ASN1_bn_print(bp, "counter:", x->counter, m, indent))
411 if (x->length != 0) {
412 BIO_indent(bp, indent, 128);
413 if (BIO_printf(bp, "recommended-private-length: %d bits\n",
414 (int)x->length) <= 0)
422 DHerr(DH_F_DO_DH_PRINT, reason);
427 static int int_dh_size(const EVP_PKEY *pkey)
429 return (DH_size(pkey->pkey.dh));
432 static int dh_bits(const EVP_PKEY *pkey)
434 return BN_num_bits(pkey->pkey.dh->p);
437 static int dh_security_bits(const EVP_PKEY *pkey)
439 return DH_security_bits(pkey->pkey.dh);
442 static int dh_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
444 if (BN_cmp(a->pkey.dh->p, b->pkey.dh->p) ||
445 BN_cmp(a->pkey.dh->g, b->pkey.dh->g))
447 else if (a->ameth == &dhx_asn1_meth) {
448 if (BN_cmp(a->pkey.dh->q, b->pkey.dh->q))
454 static int int_dh_bn_cpy(BIGNUM **dst, const BIGNUM *src)
468 static int int_dh_param_copy(DH *to, const DH *from, int is_x942)
471 is_x942 = ! !from->q;
472 if (!int_dh_bn_cpy(&to->p, from->p))
474 if (!int_dh_bn_cpy(&to->g, from->g))
477 if (!int_dh_bn_cpy(&to->q, from->q))
479 if (!int_dh_bn_cpy(&to->j, from->j))
481 OPENSSL_free(to->seed);
485 to->seed = OPENSSL_memdup(from->seed, from->seedlen);
488 to->seedlen = from->seedlen;
491 to->length = from->length;
495 DH *DHparams_dup(DH *dh)
501 if (!int_dh_param_copy(ret, dh, -1)) {
508 static int dh_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
510 if (to->pkey.dh == NULL) {
511 to->pkey.dh = DH_new();
512 if (to->pkey.dh == NULL)
515 return int_dh_param_copy(to->pkey.dh, from->pkey.dh,
516 from->ameth == &dhx_asn1_meth);
519 static int dh_missing_parameters(const EVP_PKEY *a)
521 if (!a->pkey.dh->p || !a->pkey.dh->g)
526 static int dh_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
528 if (dh_cmp_parameters(a, b) == 0)
530 if (BN_cmp(b->pkey.dh->pub_key, a->pkey.dh->pub_key) != 0)
536 static int dh_param_print(BIO *bp, const EVP_PKEY *pkey, int indent,
539 return do_dh_print(bp, pkey->pkey.dh, indent, ctx, 0);
542 static int dh_public_print(BIO *bp, const EVP_PKEY *pkey, int indent,
545 return do_dh_print(bp, pkey->pkey.dh, indent, ctx, 1);
548 static int dh_private_print(BIO *bp, const EVP_PKEY *pkey, int indent,
551 return do_dh_print(bp, pkey->pkey.dh, indent, ctx, 2);
554 int DHparams_print(BIO *bp, const DH *x)
556 return do_dh_print(bp, x, 4, NULL, 0);
559 #ifndef OPENSSL_NO_CMS
560 static int dh_cms_decrypt(CMS_RecipientInfo *ri);
561 static int dh_cms_encrypt(CMS_RecipientInfo *ri);
564 static int dh_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2)
567 #ifndef OPENSSL_NO_CMS
569 case ASN1_PKEY_CTRL_CMS_ENVELOPE:
571 return dh_cms_decrypt(arg2);
573 return dh_cms_encrypt(arg2);
576 case ASN1_PKEY_CTRL_CMS_RI_TYPE:
577 *(int *)arg2 = CMS_RECIPINFO_AGREE;
586 const EVP_PKEY_ASN1_METHOD dh_asn1_meth = {
592 "OpenSSL PKCS#3 DH method",
609 dh_missing_parameters,
619 const EVP_PKEY_ASN1_METHOD dhx_asn1_meth = {
625 "OpenSSL X9.42 DH method",
642 dh_missing_parameters,
652 #ifndef OPENSSL_NO_CMS
654 static int dh_cms_set_peerkey(EVP_PKEY_CTX *pctx,
655 X509_ALGOR *alg, ASN1_BIT_STRING *pubkey)
660 ASN1_INTEGER *public_key = NULL;
662 EVP_PKEY *pkpeer = NULL, *pk = NULL;
664 const unsigned char *p;
667 X509_ALGOR_get0(&aoid, &atype, &aval, alg);
668 if (OBJ_obj2nid(aoid) != NID_dhpublicnumber)
670 /* Only absent parameters allowed in RFC XXXX */
671 if (atype != V_ASN1_UNDEF && atype == V_ASN1_NULL)
674 pk = EVP_PKEY_CTX_get0_pkey(pctx);
677 if (pk->type != EVP_PKEY_DHX)
679 /* Get parameters from parent key */
680 dhpeer = DHparams_dup(pk->pkey.dh);
681 /* We have parameters now set public key */
682 plen = ASN1_STRING_length(pubkey);
683 p = ASN1_STRING_data(pubkey);
687 if ((public_key = d2i_ASN1_INTEGER(NULL, &p, plen)) == NULL) {
688 DHerr(DH_F_DH_CMS_SET_PEERKEY, DH_R_DECODE_ERROR);
692 /* We have parameters now set public key */
693 if ((dhpeer->pub_key = ASN1_INTEGER_to_BN(public_key, NULL)) == NULL) {
694 DHerr(DH_F_DH_CMS_SET_PEERKEY, DH_R_BN_DECODE_ERROR);
698 pkpeer = EVP_PKEY_new();
701 EVP_PKEY_assign(pkpeer, pk->ameth->pkey_id, dhpeer);
703 if (EVP_PKEY_derive_set_peer(pctx, pkpeer) > 0)
706 ASN1_INTEGER_free(public_key);
707 EVP_PKEY_free(pkpeer);
712 static int dh_cms_set_shared_info(EVP_PKEY_CTX *pctx, CMS_RecipientInfo *ri)
716 X509_ALGOR *alg, *kekalg = NULL;
717 ASN1_OCTET_STRING *ukm;
718 const unsigned char *p;
719 unsigned char *dukm = NULL;
722 const EVP_CIPHER *kekcipher;
723 EVP_CIPHER_CTX *kekctx;
725 if (!CMS_RecipientInfo_kari_get0_alg(ri, &alg, &ukm))
729 * For DH we only have one OID permissible. If ever any more get defined
730 * we will need something cleverer.
732 if (OBJ_obj2nid(alg->algorithm) != NID_id_smime_alg_ESDH) {
733 DHerr(DH_F_DH_CMS_SET_SHARED_INFO, DH_R_KDF_PARAMETER_ERROR);
737 if (EVP_PKEY_CTX_set_dh_kdf_type(pctx, EVP_PKEY_DH_KDF_X9_42) <= 0)
740 if (EVP_PKEY_CTX_set_dh_kdf_md(pctx, EVP_sha1()) <= 0)
743 if (alg->parameter->type != V_ASN1_SEQUENCE)
746 p = alg->parameter->value.sequence->data;
747 plen = alg->parameter->value.sequence->length;
748 kekalg = d2i_X509_ALGOR(NULL, &p, plen);
751 kekctx = CMS_RecipientInfo_kari_get0_ctx(ri);
754 kekcipher = EVP_get_cipherbyobj(kekalg->algorithm);
755 if (!kekcipher || EVP_CIPHER_mode(kekcipher) != EVP_CIPH_WRAP_MODE)
757 if (!EVP_EncryptInit_ex(kekctx, kekcipher, NULL, NULL, NULL))
759 if (EVP_CIPHER_asn1_to_param(kekctx, kekalg->parameter) <= 0)
762 keylen = EVP_CIPHER_CTX_key_length(kekctx);
763 if (EVP_PKEY_CTX_set_dh_kdf_outlen(pctx, keylen) <= 0)
765 /* Use OBJ_nid2obj to ensure we use built in OID that isn't freed */
766 if (EVP_PKEY_CTX_set0_dh_kdf_oid(pctx,
767 OBJ_nid2obj(EVP_CIPHER_type(kekcipher)))
772 dukmlen = ASN1_STRING_length(ukm);
773 dukm = OPENSSL_memdup(ASN1_STRING_data(ukm), dukmlen);
778 if (EVP_PKEY_CTX_set0_dh_kdf_ukm(pctx, dukm, dukmlen) <= 0)
784 X509_ALGOR_free(kekalg);
789 static int dh_cms_decrypt(CMS_RecipientInfo *ri)
792 pctx = CMS_RecipientInfo_get0_pkey_ctx(ri);
795 /* See if we need to set peer key */
796 if (!EVP_PKEY_CTX_get0_peerkey(pctx)) {
798 ASN1_BIT_STRING *pubkey;
799 if (!CMS_RecipientInfo_kari_get0_orig_id(ri, &alg, &pubkey,
804 if (!dh_cms_set_peerkey(pctx, alg, pubkey)) {
805 DHerr(DH_F_DH_CMS_DECRYPT, DH_R_PEER_KEY_ERROR);
809 /* Set DH derivation parameters and initialise unwrap context */
810 if (!dh_cms_set_shared_info(pctx, ri)) {
811 DHerr(DH_F_DH_CMS_DECRYPT, DH_R_SHARED_INFO_ERROR);
817 static int dh_cms_encrypt(CMS_RecipientInfo *ri)
823 X509_ALGOR *talg, *wrap_alg = NULL;
825 ASN1_BIT_STRING *pubkey;
826 ASN1_STRING *wrap_str;
827 ASN1_OCTET_STRING *ukm;
828 unsigned char *penc = NULL, *dukm = NULL;
832 int kdf_type, wrap_nid;
833 const EVP_MD *kdf_md;
834 pctx = CMS_RecipientInfo_get0_pkey_ctx(ri);
837 /* Get ephemeral key */
838 pkey = EVP_PKEY_CTX_get0_pkey(pctx);
839 if (!CMS_RecipientInfo_kari_get0_orig_id(ri, &talg, &pubkey,
842 X509_ALGOR_get0(&aoid, NULL, NULL, talg);
843 /* Is everything uninitialised? */
844 if (aoid == OBJ_nid2obj(NID_undef)) {
845 ASN1_INTEGER *pubk = BN_to_ASN1_INTEGER(pkey->pkey.dh->pub_key, NULL);
850 penclen = i2d_ASN1_INTEGER(pubk, &penc);
851 ASN1_INTEGER_free(pubk);
854 ASN1_STRING_set0(pubkey, penc, penclen);
855 pubkey->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07);
856 pubkey->flags |= ASN1_STRING_FLAG_BITS_LEFT;
859 X509_ALGOR_set0(talg, OBJ_nid2obj(NID_dhpublicnumber),
863 /* See if custom paraneters set */
864 kdf_type = EVP_PKEY_CTX_get_dh_kdf_type(pctx);
867 if (!EVP_PKEY_CTX_get_dh_kdf_md(pctx, &kdf_md))
870 if (kdf_type == EVP_PKEY_DH_KDF_NONE) {
871 kdf_type = EVP_PKEY_DH_KDF_X9_42;
872 if (EVP_PKEY_CTX_set_dh_kdf_type(pctx, kdf_type) <= 0)
874 } else if (kdf_type != EVP_PKEY_DH_KDF_X9_42)
877 if (kdf_md == NULL) {
878 /* Only SHA1 supported */
880 if (EVP_PKEY_CTX_set_dh_kdf_md(pctx, kdf_md) <= 0)
882 } else if (EVP_MD_type(kdf_md) != NID_sha1)
883 /* Unsupported digest */
886 if (!CMS_RecipientInfo_kari_get0_alg(ri, &talg, &ukm))
890 ctx = CMS_RecipientInfo_kari_get0_ctx(ri);
891 wrap_nid = EVP_CIPHER_CTX_type(ctx);
892 if (EVP_PKEY_CTX_set0_dh_kdf_oid(pctx, OBJ_nid2obj(wrap_nid)) <= 0)
894 keylen = EVP_CIPHER_CTX_key_length(ctx);
896 /* Package wrap algorithm in an AlgorithmIdentifier */
898 wrap_alg = X509_ALGOR_new();
899 if (wrap_alg == NULL)
901 wrap_alg->algorithm = OBJ_nid2obj(wrap_nid);
902 wrap_alg->parameter = ASN1_TYPE_new();
903 if (wrap_alg->parameter == NULL)
905 if (EVP_CIPHER_param_to_asn1(ctx, wrap_alg->parameter) <= 0)
907 if (ASN1_TYPE_get(wrap_alg->parameter) == NID_undef) {
908 ASN1_TYPE_free(wrap_alg->parameter);
909 wrap_alg->parameter = NULL;
912 if (EVP_PKEY_CTX_set_dh_kdf_outlen(pctx, keylen) <= 0)
916 dukmlen = ASN1_STRING_length(ukm);
917 dukm = OPENSSL_memdup(ASN1_STRING_data(ukm), dukmlen);
922 if (EVP_PKEY_CTX_set0_dh_kdf_ukm(pctx, dukm, dukmlen) <= 0)
927 * Now need to wrap encoding of wrap AlgorithmIdentifier into parameter
928 * of another AlgorithmIdentifier.
931 penclen = i2d_X509_ALGOR(wrap_alg, &penc);
932 if (!penc || !penclen)
934 wrap_str = ASN1_STRING_new();
935 if (wrap_str == NULL)
937 ASN1_STRING_set0(wrap_str, penc, penclen);
939 X509_ALGOR_set0(talg, OBJ_nid2obj(NID_id_smime_alg_ESDH),
940 V_ASN1_SEQUENCE, wrap_str);
946 X509_ALGOR_free(wrap_alg);