1
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
4
/* ====================================================================
5
* Copyright (c) 2006 The OpenSSL Project. All rights reserved.
7
* Redistribution and use in source and binary forms, with or without
8
* modification, are permitted provided that the following conditions
11
* 1. Redistributions of source code must retain the above copyright
12
* notice, this list of conditions and the following disclaimer.
14
* 2. Redistributions in binary form must reproduce the above copyright
15
* notice, this list of conditions and the following disclaimer in
16
* the documentation and/or other materials provided with the
19
* 3. All advertising materials mentioning features or use of this
20
* software must display the following acknowledgment:
21
* "This product includes software developed by the OpenSSL Project
22
* for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
25
* endorse or promote products derived from this software without
26
* prior written permission. For written permission, please contact
27
* licensing@OpenSSL.org.
29
* 5. Products derived from this software may not be called "OpenSSL"
30
* nor may "OpenSSL" appear in their names without prior written
31
* permission of the OpenSSL Project.
33
* 6. Redistributions of any form whatsoever must retain the following
35
* "This product includes software developed by the OpenSSL Project
36
* for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
39
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
40
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
41
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
42
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
43
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
44
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
45
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
46
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
47
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
49
* OF THE POSSIBILITY OF SUCH DAMAGE.
50
* ====================================================================
52
* This product includes cryptographic software written by Eric Young
53
* (eay@cryptsoft.com). This product includes software written by Tim
54
* Hudson (tjh@cryptsoft.com).
60
#include <openssl/x509.h>
61
#include <openssl/asn1.h>
62
#include <openssl/dh.h>
63
#include <openssl/bn.h>
64
#include "asn1_locl.h"
66
static void int_dh_free(EVP_PKEY *pkey)
68
DH_free(pkey->pkey.dh);
71
static int dh_pub_decode(EVP_PKEY *pkey, X509_PUBKEY *pubkey)
73
const unsigned char *p, *pm;
79
ASN1_INTEGER *public_key = NULL;
83
if (!X509_PUBKEY_get0_param(NULL, &p, &pklen, &palg, pubkey))
85
X509_ALGOR_get0(NULL, &ptype, &pval, palg);
87
if (ptype != V_ASN1_SEQUENCE)
89
DHerr(DH_F_DH_PUB_DECODE, DH_R_PARAMETER_ENCODING_ERROR);
97
if (!(dh = d2i_DHparams(NULL, &pm, pmlen)))
99
DHerr(DH_F_DH_PUB_DECODE, DH_R_DECODE_ERROR);
103
if (!(public_key=d2i_ASN1_INTEGER(NULL, &p, pklen)))
105
DHerr(DH_F_DH_PUB_DECODE, DH_R_DECODE_ERROR);
109
/* We have parameters now set public key */
110
if (!(dh->pub_key = ASN1_INTEGER_to_BN(public_key, NULL)))
112
DHerr(DH_F_DH_PUB_DECODE, DH_R_BN_DECODE_ERROR);
116
ASN1_INTEGER_free(public_key);
117
EVP_PKEY_assign_DH(pkey, dh);
122
ASN1_INTEGER_free(public_key);
129
static int dh_pub_encode(X509_PUBKEY *pk, const EVP_PKEY *pkey)
134
unsigned char *penc = NULL;
137
ASN1_INTEGER *pub_key = NULL;
141
str = ASN1_STRING_new();
142
str->length = i2d_DHparams(dh, &str->data);
143
if (str->length <= 0)
145
DHerr(DH_F_DH_PUB_ENCODE, ERR_R_MALLOC_FAILURE);
149
ptype = V_ASN1_SEQUENCE;
151
pub_key = BN_to_ASN1_INTEGER(dh->pub_key, NULL);
155
penclen = i2d_ASN1_INTEGER(pub_key, &penc);
157
ASN1_INTEGER_free(pub_key);
161
DHerr(DH_F_DH_PUB_ENCODE, ERR_R_MALLOC_FAILURE);
165
if (X509_PUBKEY_set0_param(pk, OBJ_nid2obj(EVP_PKEY_DH),
166
ptype, pval, penc, penclen))
173
ASN1_STRING_free(pval);
179
/* PKCS#8 DH is defined in PKCS#11 of all places. It is similar to DH in
180
* that the AlgorithmIdentifier contains the paramaters, the private key
181
* is explcitly included and the pubkey must be recalculated.
184
static int dh_priv_decode(EVP_PKEY *pkey, PKCS8_PRIV_KEY_INFO *p8)
186
const unsigned char *p, *pm;
192
ASN1_INTEGER *privkey = NULL;
196
if (!PKCS8_pkey_get0(NULL, &p, &pklen, &palg, p8))
199
X509_ALGOR_get0(NULL, &ptype, &pval, palg);
201
if (ptype != V_ASN1_SEQUENCE)
204
if (!(privkey=d2i_ASN1_INTEGER(NULL, &p, pklen)))
210
pmlen = pstr->length;
211
if (!(dh = d2i_DHparams(NULL, &pm, pmlen)))
213
/* We have parameters now set private key */
214
if (!(dh->priv_key = ASN1_INTEGER_to_BN(privkey, NULL)))
216
DHerr(DH_F_DH_PRIV_DECODE,DH_R_BN_ERROR);
219
/* Calculate public key */
220
if (!DH_generate_key(dh))
223
EVP_PKEY_assign_DH(pkey, dh);
225
ASN1_INTEGER_free(privkey);
230
DHerr(DH_F_DH_PRIV_DECODE, EVP_R_DECODE_ERROR);
236
static int dh_priv_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey)
238
ASN1_STRING *params = NULL;
239
ASN1_INTEGER *prkey = NULL;
240
unsigned char *dp = NULL;
243
params = ASN1_STRING_new();
247
DHerr(DH_F_DH_PRIV_ENCODE,ERR_R_MALLOC_FAILURE);
251
params->length = i2d_DHparams(pkey->pkey.dh, ¶ms->data);
252
if (params->length <= 0)
254
DHerr(DH_F_DH_PRIV_ENCODE,ERR_R_MALLOC_FAILURE);
257
params->type = V_ASN1_SEQUENCE;
259
/* Get private key into integer */
260
prkey = BN_to_ASN1_INTEGER(pkey->pkey.dh->priv_key, NULL);
264
DHerr(DH_F_DH_PRIV_ENCODE,DH_R_BN_ERROR);
268
dplen = i2d_ASN1_INTEGER(prkey, &dp);
270
ASN1_INTEGER_free(prkey);
272
if (!PKCS8_pkey_set0(p8, OBJ_nid2obj(NID_dhKeyAgreement), 0,
273
V_ASN1_SEQUENCE, params, dp, dplen))
282
ASN1_STRING_free(params);
284
ASN1_INTEGER_free(prkey);
289
static void update_buflen(const BIGNUM *b, size_t *pbuflen)
294
if (*pbuflen < (i = (size_t)BN_num_bytes(b)))
298
static int dh_param_decode(EVP_PKEY *pkey,
299
const unsigned char **pder, int derlen)
302
if (!(dh = d2i_DHparams(NULL, pder, derlen)))
304
DHerr(DH_F_DH_PARAM_DECODE, ERR_R_DH_LIB);
307
EVP_PKEY_assign_DH(pkey, dh);
311
static int dh_param_encode(const EVP_PKEY *pkey, unsigned char **pder)
313
return i2d_DHparams(pkey->pkey.dh, pder);
316
static int do_dh_print(BIO *bp, const DH *x, int indent,
317
ASN1_PCTX *ctx, int ptype)
319
unsigned char *m=NULL;
320
int reason=ERR_R_BUF_LIB,ret=0;
323
const char *ktype = NULL;
325
BIGNUM *priv_key, *pub_key;
328
priv_key = x->priv_key;
333
pub_key = x->pub_key;
337
update_buflen(x->p, &buf_len);
341
reason = ERR_R_PASSED_NULL_PARAMETER;
345
update_buflen(x->g, &buf_len);
346
update_buflen(pub_key, &buf_len);
347
update_buflen(priv_key, &buf_len);
350
ktype = "PKCS#3 DH Private-Key";
352
ktype = "PKCS#3 DH Public-Key";
354
ktype = "PKCS#3 DH Parameters";
356
m= OPENSSL_malloc(buf_len+10);
359
reason=ERR_R_MALLOC_FAILURE;
363
BIO_indent(bp, indent, 128);
364
if (BIO_printf(bp,"%s: (%d bit)\n", ktype, BN_num_bits(x->p)) <= 0)
368
if (!ASN1_bn_print(bp,"private-key:",priv_key,m,indent)) goto err;
369
if (!ASN1_bn_print(bp,"public-key:",pub_key,m,indent)) goto err;
371
if (!ASN1_bn_print(bp,"prime:",x->p,m,indent)) goto err;
372
if (!ASN1_bn_print(bp,"generator:",x->g,m,indent)) goto err;
375
BIO_indent(bp, indent, 128);
376
if (BIO_printf(bp,"recommended-private-length: %d bits\n",
377
(int)x->length) <= 0) goto err;
385
DHerr(DH_F_DO_DH_PRINT,reason);
387
if (m != NULL) OPENSSL_free(m);
391
static int int_dh_size(const EVP_PKEY *pkey)
393
return(DH_size(pkey->pkey.dh));
396
static int dh_bits(const EVP_PKEY *pkey)
398
return BN_num_bits(pkey->pkey.dh->p);
401
static int dh_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
403
if ( BN_cmp(a->pkey.dh->p,b->pkey.dh->p) ||
404
BN_cmp(a->pkey.dh->g,b->pkey.dh->g))
410
static int dh_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
414
if ((a=BN_dup(from->pkey.dh->p)) == NULL)
416
if (to->pkey.dh->p != NULL)
417
BN_free(to->pkey.dh->p);
420
if ((a=BN_dup(from->pkey.dh->g)) == NULL)
422
if (to->pkey.dh->g != NULL)
423
BN_free(to->pkey.dh->g);
429
static int dh_missing_parameters(const EVP_PKEY *a)
431
if (!a->pkey.dh->p || !a->pkey.dh->g)
436
static int dh_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
438
if (dh_cmp_parameters(a, b) == 0)
440
if (BN_cmp(b->pkey.dh->pub_key,a->pkey.dh->pub_key) != 0)
446
static int dh_param_print(BIO *bp, const EVP_PKEY *pkey, int indent,
449
return do_dh_print(bp, pkey->pkey.dh, indent, ctx, 0);
452
static int dh_public_print(BIO *bp, const EVP_PKEY *pkey, int indent,
455
return do_dh_print(bp, pkey->pkey.dh, indent, ctx, 1);
458
static int dh_private_print(BIO *bp, const EVP_PKEY *pkey, int indent,
461
return do_dh_print(bp, pkey->pkey.dh, indent, ctx, 2);
464
int DHparams_print(BIO *bp, const DH *x)
466
return do_dh_print(bp, x, 4, NULL, 0);
469
const EVP_PKEY_ASN1_METHOD dh_asn1_meth =
476
"OpenSSL PKCS#3 DH method",
492
dh_missing_parameters,