1 /**********************************************************************
3 * Copyright (c) 2005-2006 Cryptocom LTD *
4 * This file is distributed under the same license as OpenSSL *
6 * Implementation of RFC 4490/4491 ASN1 method *
8 * Requires OpenSSL 0.9.9 for compilation *
9 **********************************************************************/
11 #include <openssl/crypto.h>
12 #include <openssl/err.h>
13 #include <openssl/engine.h>
14 #include <openssl/evp.h>
15 #include <openssl/asn1.h>
16 #ifndef OPENSSL_NO_CMS
17 # include <openssl/cms.h>
19 #include "gost_params.h"
21 #include "e_gost_err.h"
23 int gost94_nid_by_params(DSA
*p
)
25 R3410_params
*gost_params
;
27 for (gost_params
= R3410_paramset
; gost_params
->q
!= NULL
; gost_params
++) {
28 BN_dec2bn(&q
, gost_params
->q
);
29 if (!BN_cmp(q
, p
->q
)) {
31 return gost_params
->nid
;
38 static ASN1_STRING
*encode_gost_algor_params(const EVP_PKEY
*key
)
40 ASN1_STRING
*params
= ASN1_STRING_new();
41 GOST_KEY_PARAMS
*gkp
= GOST_KEY_PARAMS_new();
42 int pkey_param_nid
= NID_undef
;
44 if (!params
|| !gkp
) {
45 GOSTerr(GOST_F_ENCODE_GOST_ALGOR_PARAMS
, ERR_R_MALLOC_FAILURE
);
46 ASN1_STRING_free(params
);
50 switch (EVP_PKEY_base_id(key
)) {
51 case NID_id_GostR3410_2001
:
53 EC_GROUP_get_curve_name(EC_KEY_get0_group
54 (EVP_PKEY_get0((EVP_PKEY
*)key
)));
56 case NID_id_GostR3410_94
:
58 (int)gost94_nid_by_params(EVP_PKEY_get0((EVP_PKEY
*)key
));
59 if (pkey_param_nid
== NID_undef
) {
60 GOSTerr(GOST_F_ENCODE_GOST_ALGOR_PARAMS
,
61 GOST_R_INVALID_GOST94_PARMSET
);
62 ASN1_STRING_free(params
);
68 gkp
->key_params
= OBJ_nid2obj(pkey_param_nid
);
69 gkp
->hash_params
= OBJ_nid2obj(NID_id_GostR3411_94_CryptoProParamSet
);
71 * gkp->cipher_params = OBJ_nid2obj(cipher_param_nid);
73 params
->length
= i2d_GOST_KEY_PARAMS(gkp
, ¶ms
->data
);
74 if (params
->length
<= 0) {
75 GOSTerr(GOST_F_ENCODE_GOST_ALGOR_PARAMS
, ERR_R_MALLOC_FAILURE
);
76 ASN1_STRING_free(params
);
80 params
->type
= V_ASN1_SEQUENCE
;
82 GOST_KEY_PARAMS_free(gkp
);
87 * Parses GOST algorithm parameters from X509_ALGOR and modifies pkey setting
90 static int decode_gost_algor_params(EVP_PKEY
*pkey
, X509_ALGOR
*palg
)
92 ASN1_OBJECT
*palg_obj
= NULL
;
93 int ptype
= V_ASN1_UNDEF
;
94 int pkey_nid
= NID_undef
, param_nid
= NID_undef
;
96 ASN1_STRING
*pval
= NULL
;
97 const unsigned char *p
;
98 GOST_KEY_PARAMS
*gkp
= NULL
;
100 X509_ALGOR_get0(&palg_obj
, &ptype
, &_pval
, palg
);
102 if (ptype
!= V_ASN1_SEQUENCE
) {
103 GOSTerr(GOST_F_DECODE_GOST_ALGOR_PARAMS
,
104 GOST_R_BAD_KEY_PARAMETERS_FORMAT
);
108 pkey_nid
= OBJ_obj2nid(palg_obj
);
110 gkp
= d2i_GOST_KEY_PARAMS(NULL
, &p
, pval
->length
);
112 GOSTerr(GOST_F_DECODE_GOST_ALGOR_PARAMS
,
113 GOST_R_BAD_PKEY_PARAMETERS_FORMAT
);
116 param_nid
= OBJ_obj2nid(gkp
->key_params
);
117 GOST_KEY_PARAMS_free(gkp
);
118 if(!EVP_PKEY_set_type(pkey
, pkey_nid
)) {
119 GOSTerr(GOST_F_DECODE_GOST_ALGOR_PARAMS
, ERR_R_INTERNAL_ERROR
);
123 case NID_id_GostR3410_94
:
125 DSA
*dsa
= EVP_PKEY_get0(pkey
);
128 if (!EVP_PKEY_assign(pkey
, pkey_nid
, dsa
))
131 if (!fill_GOST94_params(dsa
, param_nid
))
135 case NID_id_GostR3410_2001
:
137 EC_KEY
*ec
= EVP_PKEY_get0(pkey
);
140 if (!EVP_PKEY_assign(pkey
, pkey_nid
, ec
))
143 if (!fill_GOST2001_params(ec
, param_nid
))
151 static int gost_set_priv_key(EVP_PKEY
*pkey
, BIGNUM
*priv
)
153 switch (EVP_PKEY_base_id(pkey
)) {
154 case NID_id_GostR3410_94
:
156 DSA
*dsa
= EVP_PKEY_get0(pkey
);
159 EVP_PKEY_assign(pkey
, EVP_PKEY_base_id(pkey
), dsa
);
161 dsa
->priv_key
= BN_dup(priv
);
162 if (!EVP_PKEY_missing_parameters(pkey
))
163 gost94_compute_public(dsa
);
166 case NID_id_GostR3410_2001
:
168 EC_KEY
*ec
= EVP_PKEY_get0(pkey
);
171 EVP_PKEY_assign(pkey
, EVP_PKEY_base_id(pkey
), ec
);
173 if (!EC_KEY_set_private_key(ec
, priv
))
175 if (!EVP_PKEY_missing_parameters(pkey
))
176 gost2001_compute_public(ec
);
183 BIGNUM
*gost_get0_priv_key(const EVP_PKEY
*pkey
)
185 switch (EVP_PKEY_base_id(pkey
)) {
186 case NID_id_GostR3410_94
:
188 DSA
*dsa
= EVP_PKEY_get0((EVP_PKEY
*)pkey
);
194 return dsa
->priv_key
;
197 case NID_id_GostR3410_2001
:
199 EC_KEY
*ec
= EVP_PKEY_get0((EVP_PKEY
*)pkey
);
204 if (!(priv
= EC_KEY_get0_private_key(ec
)))
206 return (BIGNUM
*)priv
;
213 static int pkey_ctrl_gost(EVP_PKEY
*pkey
, int op
, long arg1
, void *arg2
)
216 case ASN1_PKEY_CTRL_PKCS7_SIGN
:
218 X509_ALGOR
*alg1
= NULL
, *alg2
= NULL
;
219 int nid
= EVP_PKEY_base_id(pkey
);
220 PKCS7_SIGNER_INFO_get0_algs((PKCS7_SIGNER_INFO
*)arg2
,
222 X509_ALGOR_set0(alg1
, OBJ_nid2obj(NID_id_GostR3411_94
),
224 if (nid
== NID_undef
) {
227 X509_ALGOR_set0(alg2
, OBJ_nid2obj(nid
), V_ASN1_NULL
, 0);
230 #ifndef OPENSSL_NO_CMS
231 case ASN1_PKEY_CTRL_CMS_SIGN
:
233 X509_ALGOR
*alg1
= NULL
, *alg2
= NULL
;
234 int nid
= EVP_PKEY_base_id(pkey
);
235 CMS_SignerInfo_get0_algs((CMS_SignerInfo
*)arg2
,
236 NULL
, NULL
, &alg1
, &alg2
);
237 X509_ALGOR_set0(alg1
, OBJ_nid2obj(NID_id_GostR3411_94
),
239 if (nid
== NID_undef
) {
242 X509_ALGOR_set0(alg2
, OBJ_nid2obj(nid
), V_ASN1_NULL
, 0);
246 case ASN1_PKEY_CTRL_PKCS7_ENCRYPT
:
249 ASN1_STRING
*params
= encode_gost_algor_params(pkey
);
253 PKCS7_RECIP_INFO_get0_alg((PKCS7_RECIP_INFO
*)arg2
, &alg
);
254 X509_ALGOR_set0(alg
, OBJ_nid2obj(pkey
->type
),
255 V_ASN1_SEQUENCE
, params
);
258 #ifndef OPENSSL_NO_CMS
259 case ASN1_PKEY_CTRL_CMS_ENVELOPE
:
261 X509_ALGOR
*alg
= NULL
;
262 ASN1_STRING
*params
= encode_gost_algor_params(pkey
);
266 CMS_RecipientInfo_ktri_get0_algs((CMS_RecipientInfo
*)arg2
, NULL
,
268 X509_ALGOR_set0(alg
, OBJ_nid2obj(pkey
->type
), V_ASN1_SEQUENCE
,
273 case ASN1_PKEY_CTRL_DEFAULT_MD_NID
:
274 *(int *)arg2
= NID_id_GostR3411_94
;
281 /* --------------------- free functions * ------------------------------*/
282 static void pkey_free_gost94(EVP_PKEY
*key
)
285 DSA_free(key
->pkey
.dsa
);
289 static void pkey_free_gost01(EVP_PKEY
*key
)
292 EC_KEY_free(key
->pkey
.ec
);
296 /* ------------------ private key functions -----------------------------*/
297 static int priv_decode_gost(EVP_PKEY
*pk
, PKCS8_PRIV_KEY_INFO
*p8inf
)
299 const unsigned char *pkey_buf
= NULL
, *p
= NULL
;
301 BIGNUM
*pk_num
= NULL
;
303 X509_ALGOR
*palg
= NULL
;
304 ASN1_OBJECT
*palg_obj
= NULL
;
305 ASN1_INTEGER
*priv_key
= NULL
;
307 if (!PKCS8_pkey_get0(&palg_obj
, &pkey_buf
, &priv_len
, &palg
, p8inf
))
310 if (!decode_gost_algor_params(pk
, palg
)) {
313 if (V_ASN1_OCTET_STRING
== *p
) {
314 /* New format - Little endian octet string */
315 unsigned char rev_buf
[32];
317 ASN1_OCTET_STRING
*s
= d2i_ASN1_OCTET_STRING(NULL
, &p
, priv_len
);
318 if (!s
|| s
->length
!= 32) {
319 GOSTerr(GOST_F_PRIV_DECODE_GOST
, EVP_R_DECODE_ERROR
);
322 for (i
= 0; i
< 32; i
++) {
323 rev_buf
[31 - i
] = s
->data
[i
];
326 pk_num
= getbnfrombuf(rev_buf
, 32);
328 priv_key
= d2i_ASN1_INTEGER(NULL
, &p
, priv_len
);
331 ret
= ((pk_num
= ASN1_INTEGER_to_BN(priv_key
, NULL
)) != NULL
);
332 ASN1_INTEGER_free(priv_key
);
334 GOSTerr(GOST_F_PRIV_DECODE_GOST
, EVP_R_DECODE_ERROR
);
339 ret
= gost_set_priv_key(pk
, pk_num
);
344 /* ----------------------------------------------------------------------*/
345 static int priv_encode_gost(PKCS8_PRIV_KEY_INFO
*p8
, const EVP_PKEY
*pk
)
347 ASN1_OBJECT
*algobj
= OBJ_nid2obj(EVP_PKEY_base_id(pk
));
348 ASN1_STRING
*params
= encode_gost_algor_params(pk
);
349 unsigned char *priv_buf
= NULL
;
352 ASN1_INTEGER
*asn1key
= NULL
;
356 asn1key
= BN_to_ASN1_INTEGER(gost_get0_priv_key(pk
), NULL
);
357 priv_len
= i2d_ASN1_INTEGER(asn1key
, &priv_buf
);
358 ASN1_INTEGER_free(asn1key
);
359 return PKCS8_pkey_set0(p8
, algobj
, 0, V_ASN1_SEQUENCE
, params
,
363 /* --------- printing keys --------------------------------*/
364 static int print_gost_94(BIO
*out
, const EVP_PKEY
*pkey
, int indent
,
365 ASN1_PCTX
*pctx
, int type
)
367 int param_nid
= NID_undef
;
372 if (!BIO_indent(out
, indent
, 128))
374 BIO_printf(out
, "Private key: ");
375 key
= gost_get0_priv_key(pkey
);
377 BIO_printf(out
, "<undefined>");
380 BIO_printf(out
, "\n");
385 pubkey
= ((DSA
*)EVP_PKEY_get0((EVP_PKEY
*)pkey
))->pub_key
;
386 BIO_indent(out
, indent
, 128);
387 BIO_printf(out
, "Public key: ");
388 BN_print(out
, pubkey
);
389 BIO_printf(out
, "\n");
392 param_nid
= gost94_nid_by_params(EVP_PKEY_get0((EVP_PKEY
*)pkey
));
393 BIO_indent(out
, indent
, 128);
394 BIO_printf(out
, "Parameter set: %s\n", OBJ_nid2ln(param_nid
));
398 static int param_print_gost94(BIO
*out
, const EVP_PKEY
*pkey
, int indent
,
401 return print_gost_94(out
, pkey
, indent
, pctx
, 0);
404 static int pub_print_gost94(BIO
*out
, const EVP_PKEY
*pkey
, int indent
,
407 return print_gost_94(out
, pkey
, indent
, pctx
, 1);
410 static int priv_print_gost94(BIO
*out
, const EVP_PKEY
*pkey
, int indent
,
413 return print_gost_94(out
, pkey
, indent
, pctx
, 2);
416 static int print_gost_01(BIO
*out
, const EVP_PKEY
*pkey
, int indent
,
417 ASN1_PCTX
*pctx
, int type
)
419 int param_nid
= NID_undef
;
423 if (!BIO_indent(out
, indent
, 128))
425 BIO_printf(out
, "Private key: ");
426 key
= gost_get0_priv_key(pkey
);
428 BIO_printf(out
, "<undefined)");
431 BIO_printf(out
, "\n");
434 BN_CTX
*ctx
= BN_CTX_new();
436 const EC_POINT
*pubkey
;
437 const EC_GROUP
*group
;
440 GOSTerr(GOST_F_PRINT_GOST_01
, ERR_R_MALLOC_FAILURE
);
447 EC_KEY_get0_public_key((EC_KEY
*)EVP_PKEY_get0((EVP_PKEY
*)pkey
));
448 group
= EC_KEY_get0_group((EC_KEY
*)EVP_PKEY_get0((EVP_PKEY
*)pkey
));
449 if (!EC_POINT_get_affine_coordinates_GFp(group
, pubkey
, X
, Y
, ctx
)) {
450 GOSTerr(GOST_F_PRINT_GOST_01
, ERR_R_EC_LIB
);
454 if (!BIO_indent(out
, indent
, 128))
456 BIO_printf(out
, "Public key:\n");
457 if (!BIO_indent(out
, indent
+ 3, 128))
459 BIO_printf(out
, "X:");
461 BIO_printf(out
, "\n");
462 BIO_indent(out
, indent
+ 3, 128);
463 BIO_printf(out
, "Y:");
465 BIO_printf(out
, "\n");
471 EC_GROUP_get_curve_name(EC_KEY_get0_group
472 (EVP_PKEY_get0((EVP_PKEY
*)pkey
)));
473 if (!BIO_indent(out
, indent
, 128))
475 BIO_printf(out
, "Parameter set: %s\n", OBJ_nid2ln(param_nid
));
479 static int param_print_gost01(BIO
*out
, const EVP_PKEY
*pkey
, int indent
,
482 return print_gost_01(out
, pkey
, indent
, pctx
, 0);
485 static int pub_print_gost01(BIO
*out
, const EVP_PKEY
*pkey
, int indent
,
488 return print_gost_01(out
, pkey
, indent
, pctx
, 1);
491 static int priv_print_gost01(BIO
*out
, const EVP_PKEY
*pkey
, int indent
,
494 return print_gost_01(out
, pkey
, indent
, pctx
, 2);
497 /* ---------------------------------------------------------------------*/
498 static int param_missing_gost94(const EVP_PKEY
*pk
)
500 const DSA
*dsa
= EVP_PKEY_get0((EVP_PKEY
*)pk
);
508 static int param_missing_gost01(const EVP_PKEY
*pk
)
510 const EC_KEY
*ec
= EVP_PKEY_get0((EVP_PKEY
*)pk
);
513 if (!EC_KEY_get0_group(ec
))
518 static int param_copy_gost94(EVP_PKEY
*to
, const EVP_PKEY
*from
)
520 const DSA
*dfrom
= EVP_PKEY_get0((EVP_PKEY
*)from
);
521 DSA
*dto
= EVP_PKEY_get0(to
);
522 if (EVP_PKEY_base_id(from
) != EVP_PKEY_base_id(to
)) {
523 GOSTerr(GOST_F_PARAM_COPY_GOST94
, GOST_R_INCOMPATIBLE_ALGORITHMS
);
527 GOSTerr(GOST_F_PARAM_COPY_GOST94
, GOST_R_KEY_PARAMETERS_MISSING
);
532 EVP_PKEY_assign(to
, EVP_PKEY_base_id(from
), dto
);
534 #define COPYBIGNUM(a,b,x) if (a->x) BN_free(a->x); a->x=BN_dup(b->x);
535 COPYBIGNUM(dto
, dfrom
, p
)
536 COPYBIGNUM(dto
, dfrom
, q
)
537 COPYBIGNUM(dto
, dfrom
, g
)
540 gost94_compute_public(dto
);
544 static int param_copy_gost01(EVP_PKEY
*to
, const EVP_PKEY
*from
)
546 EC_KEY
*eto
= EVP_PKEY_get0(to
);
547 const EC_KEY
*efrom
= EVP_PKEY_get0((EVP_PKEY
*)from
);
548 if (EVP_PKEY_base_id(from
) != EVP_PKEY_base_id(to
)) {
549 GOSTerr(GOST_F_PARAM_COPY_GOST01
, GOST_R_INCOMPATIBLE_ALGORITHMS
);
553 GOSTerr(GOST_F_PARAM_COPY_GOST01
, GOST_R_KEY_PARAMETERS_MISSING
);
559 GOSTerr(GOST_F_PARAM_COPY_GOST01
, ERR_R_MALLOC_FAILURE
);
562 if(!EVP_PKEY_assign(to
, EVP_PKEY_base_id(from
), eto
)) {
563 GOSTerr(GOST_F_PARAM_COPY_GOST01
, ERR_R_INTERNAL_ERROR
);
567 if(!EC_KEY_set_group(eto
, EC_KEY_get0_group(efrom
))) {
568 GOSTerr(GOST_F_PARAM_COPY_GOST01
, ERR_R_INTERNAL_ERROR
);
571 if (EC_KEY_get0_private_key(eto
)) {
572 gost2001_compute_public(eto
);
577 static int param_cmp_gost94(const EVP_PKEY
*a
, const EVP_PKEY
*b
)
579 const DSA
*da
= EVP_PKEY_get0((EVP_PKEY
*)a
);
580 const DSA
*db
= EVP_PKEY_get0((EVP_PKEY
*)b
);
581 if (!BN_cmp(da
->q
, db
->q
))
586 static int param_cmp_gost01(const EVP_PKEY
*a
, const EVP_PKEY
*b
)
588 if (EC_GROUP_get_curve_name
589 (EC_KEY_get0_group(EVP_PKEY_get0((EVP_PKEY
*)a
))) ==
590 EC_GROUP_get_curve_name(EC_KEY_get0_group
591 (EVP_PKEY_get0((EVP_PKEY
*)b
)))) {
598 /* ---------- Public key functions * --------------------------------------*/
599 static int pub_decode_gost94(EVP_PKEY
*pk
, X509_PUBKEY
*pub
)
601 X509_ALGOR
*palg
= NULL
;
602 const unsigned char *pubkey_buf
= NULL
;
603 unsigned char *databuf
;
604 ASN1_OBJECT
*palgobj
= NULL
;
607 ASN1_OCTET_STRING
*octet
= NULL
;
609 if (!X509_PUBKEY_get0_param(&palgobj
, &pubkey_buf
, &pub_len
, &palg
, pub
))
611 EVP_PKEY_assign(pk
, OBJ_obj2nid(palgobj
), NULL
);
612 if (!decode_gost_algor_params(pk
, palg
))
614 octet
= d2i_ASN1_OCTET_STRING(NULL
, &pubkey_buf
, pub_len
);
616 GOSTerr(GOST_F_PUB_DECODE_GOST94
, ERR_R_MALLOC_FAILURE
);
619 databuf
= OPENSSL_malloc(octet
->length
);
620 for (i
= 0, j
= octet
->length
- 1; i
< octet
->length
; i
++, j
--) {
621 databuf
[j
] = octet
->data
[i
];
623 dsa
= EVP_PKEY_get0(pk
);
624 dsa
->pub_key
= BN_bin2bn(databuf
, octet
->length
, NULL
);
625 ASN1_OCTET_STRING_free(octet
);
626 OPENSSL_free(databuf
);
631 static int pub_encode_gost94(X509_PUBKEY
*pub
, const EVP_PKEY
*pk
)
633 ASN1_OBJECT
*algobj
= NULL
;
634 ASN1_OCTET_STRING
*octet
= NULL
;
636 unsigned char *buf
= NULL
, *databuf
, *sptr
;
637 int i
, j
, data_len
, ret
= 0;
639 int ptype
= V_ASN1_UNDEF
;
640 DSA
*dsa
= EVP_PKEY_get0((EVP_PKEY
*)pk
);
641 algobj
= OBJ_nid2obj(EVP_PKEY_base_id(pk
));
642 if (pk
->save_parameters
) {
643 ASN1_STRING
*params
= encode_gost_algor_params(pk
);
645 ptype
= V_ASN1_SEQUENCE
;
647 data_len
= BN_num_bytes(dsa
->pub_key
);
648 databuf
= OPENSSL_malloc(data_len
);
649 BN_bn2bin(dsa
->pub_key
, databuf
);
650 octet
= ASN1_OCTET_STRING_new();
651 ASN1_STRING_set(octet
, NULL
, data_len
);
652 sptr
= ASN1_STRING_data(octet
);
653 for (i
= 0, j
= data_len
- 1; i
< data_len
; i
++, j
--) {
654 sptr
[i
] = databuf
[j
];
656 OPENSSL_free(databuf
);
657 ret
= i2d_ASN1_OCTET_STRING(octet
, &buf
);
658 ASN1_BIT_STRING_free(octet
);
661 return X509_PUBKEY_set0_param(pub
, algobj
, ptype
, pval
, buf
, ret
);
664 static int pub_decode_gost01(EVP_PKEY
*pk
, X509_PUBKEY
*pub
)
666 X509_ALGOR
*palg
= NULL
;
667 const unsigned char *pubkey_buf
= NULL
;
668 unsigned char *databuf
;
669 ASN1_OBJECT
*palgobj
= NULL
;
673 ASN1_OCTET_STRING
*octet
= NULL
;
675 const EC_GROUP
*group
;
677 if (!X509_PUBKEY_get0_param(&palgobj
, &pubkey_buf
, &pub_len
, &palg
, pub
))
679 EVP_PKEY_assign(pk
, OBJ_obj2nid(palgobj
), NULL
);
680 if (!decode_gost_algor_params(pk
, palg
))
682 group
= EC_KEY_get0_group(EVP_PKEY_get0(pk
));
683 octet
= d2i_ASN1_OCTET_STRING(NULL
, &pubkey_buf
, pub_len
);
685 GOSTerr(GOST_F_PUB_DECODE_GOST01
, ERR_R_MALLOC_FAILURE
);
688 databuf
= OPENSSL_malloc(octet
->length
);
689 for (i
= 0, j
= octet
->length
- 1; i
< octet
->length
; i
++, j
--) {
690 databuf
[j
] = octet
->data
[i
];
692 len
= octet
->length
/ 2;
693 ASN1_OCTET_STRING_free(octet
);
695 Y
= getbnfrombuf(databuf
, len
);
696 X
= getbnfrombuf(databuf
+ len
, len
);
697 OPENSSL_free(databuf
);
698 pub_key
= EC_POINT_new(group
);
699 if (!EC_POINT_set_affine_coordinates_GFp(group
, pub_key
, X
, Y
, NULL
)) {
700 GOSTerr(GOST_F_PUB_DECODE_GOST01
, ERR_R_EC_LIB
);
701 EC_POINT_free(pub_key
);
708 if (!EC_KEY_set_public_key(EVP_PKEY_get0(pk
), pub_key
)) {
709 GOSTerr(GOST_F_PUB_DECODE_GOST01
, ERR_R_EC_LIB
);
710 EC_POINT_free(pub_key
);
713 EC_POINT_free(pub_key
);
718 static int pub_encode_gost01(X509_PUBKEY
*pub
, const EVP_PKEY
*pk
)
720 ASN1_OBJECT
*algobj
= NULL
;
721 ASN1_OCTET_STRING
*octet
= NULL
;
723 unsigned char *buf
= NULL
, *databuf
, *sptr
;
724 int i
, j
, data_len
, ret
= 0;
725 const EC_POINT
*pub_key
;
726 BIGNUM
*X
, *Y
, *order
;
727 const EC_KEY
*ec
= EVP_PKEY_get0((EVP_PKEY
*)pk
);
728 int ptype
= V_ASN1_UNDEF
;
730 algobj
= OBJ_nid2obj(EVP_PKEY_base_id(pk
));
731 if (pk
->save_parameters
) {
732 ASN1_STRING
*params
= encode_gost_algor_params(pk
);
734 ptype
= V_ASN1_SEQUENCE
;
737 EC_GROUP_get_order(EC_KEY_get0_group(ec
), order
, NULL
);
738 pub_key
= EC_KEY_get0_public_key(ec
);
740 GOSTerr(GOST_F_PUB_ENCODE_GOST01
, GOST_R_PUBLIC_KEY_UNDEFINED
);
746 GOSTerr(GOST_F_PUB_ENCODE_GOST01
, ERR_R_MALLOC_FAILURE
);
752 if(!EC_POINT_get_affine_coordinates_GFp(EC_KEY_get0_group(ec
),
753 pub_key
, X
, Y
, NULL
)) {
754 GOSTerr(GOST_F_PUB_ENCODE_GOST01
, ERR_R_INTERNAL_ERROR
);
760 data_len
= 2 * BN_num_bytes(order
);
762 databuf
= OPENSSL_malloc(data_len
);
763 memset(databuf
, 0, data_len
);
765 store_bignum(X
, databuf
+ data_len
/ 2, data_len
/ 2);
766 store_bignum(Y
, databuf
, data_len
/ 2);
770 octet
= ASN1_OCTET_STRING_new();
771 ASN1_STRING_set(octet
, NULL
, data_len
);
772 sptr
= ASN1_STRING_data(octet
);
773 for (i
= 0, j
= data_len
- 1; i
< data_len
; i
++, j
--) {
774 sptr
[i
] = databuf
[j
];
776 OPENSSL_free(databuf
);
777 ret
= i2d_ASN1_OCTET_STRING(octet
, &buf
);
778 ASN1_BIT_STRING_free(octet
);
781 return X509_PUBKEY_set0_param(pub
, algobj
, ptype
, pval
, buf
, ret
);
784 static int pub_cmp_gost94(const EVP_PKEY
*a
, const EVP_PKEY
*b
)
786 const DSA
*da
= EVP_PKEY_get0((EVP_PKEY
*)a
);
787 const DSA
*db
= EVP_PKEY_get0((EVP_PKEY
*)b
);
788 if (da
&& db
&& da
->pub_key
&& db
->pub_key
789 && !BN_cmp(da
->pub_key
, db
->pub_key
)) {
795 static int pub_cmp_gost01(const EVP_PKEY
*a
, const EVP_PKEY
*b
)
797 const EC_KEY
*ea
= EVP_PKEY_get0((EVP_PKEY
*)a
);
798 const EC_KEY
*eb
= EVP_PKEY_get0((EVP_PKEY
*)b
);
799 const EC_POINT
*ka
, *kb
;
803 ka
= EC_KEY_get0_public_key(ea
);
804 kb
= EC_KEY_get0_public_key(eb
);
807 ret
= (0 == EC_POINT_cmp(EC_KEY_get0_group(ea
), ka
, kb
, NULL
));
811 static int pkey_size_gost(const EVP_PKEY
*pk
)
816 static int pkey_bits_gost(const EVP_PKEY
*pk
)
821 /* ---------------------- ASN1 METHOD for GOST MAC -------------------*/
822 static void mackey_free_gost(EVP_PKEY
*pk
)
825 OPENSSL_free(pk
->pkey
.ptr
);
829 static int mac_ctrl_gost(EVP_PKEY
*pkey
, int op
, long arg1
, void *arg2
)
832 case ASN1_PKEY_CTRL_DEFAULT_MD_NID
:
833 *(int *)arg2
= NID_id_Gost28147_89_MAC
;
839 static int gost94_param_encode(const EVP_PKEY
*pkey
, unsigned char **pder
)
841 int nid
= gost94_nid_by_params(EVP_PKEY_get0((EVP_PKEY
*)pkey
));
842 return i2d_ASN1_OBJECT(OBJ_nid2obj(nid
), pder
);
845 static int gost2001_param_encode(const EVP_PKEY
*pkey
, unsigned char **pder
)
848 EC_GROUP_get_curve_name(EC_KEY_get0_group
849 (EVP_PKEY_get0((EVP_PKEY
*)pkey
)));
850 return i2d_ASN1_OBJECT(OBJ_nid2obj(nid
), pder
);
853 static int gost94_param_decode(EVP_PKEY
*pkey
, const unsigned char **pder
,
856 ASN1_OBJECT
*obj
= NULL
;
857 DSA
*dsa
= EVP_PKEY_get0(pkey
);
859 if (d2i_ASN1_OBJECT(&obj
, pder
, derlen
) == NULL
) {
862 nid
= OBJ_obj2nid(obj
);
863 ASN1_OBJECT_free(obj
);
866 if (!EVP_PKEY_assign(pkey
, NID_id_GostR3410_94
, dsa
))
869 if (!fill_GOST94_params(dsa
, nid
))
874 static int gost2001_param_decode(EVP_PKEY
*pkey
, const unsigned char **pder
,
877 ASN1_OBJECT
*obj
= NULL
;
879 EC_KEY
*ec
= EVP_PKEY_get0(pkey
);
880 if (d2i_ASN1_OBJECT(&obj
, pder
, derlen
) == NULL
) {
883 nid
= OBJ_obj2nid(obj
);
884 ASN1_OBJECT_free(obj
);
887 if (!EVP_PKEY_assign(pkey
, NID_id_GostR3410_2001
, ec
))
890 if (!fill_GOST2001_params(ec
, nid
))
895 /* ----------------------------------------------------------------------*/
896 int register_ameth_gost(int nid
, EVP_PKEY_ASN1_METHOD
**ameth
,
897 const char *pemstr
, const char *info
)
899 *ameth
= EVP_PKEY_asn1_new(nid
, ASN1_PKEY_SIGPARAM_NULL
, pemstr
, info
);
903 case NID_id_GostR3410_94
:
904 EVP_PKEY_asn1_set_free(*ameth
, pkey_free_gost94
);
905 EVP_PKEY_asn1_set_private(*ameth
,
906 priv_decode_gost
, priv_encode_gost
,
909 EVP_PKEY_asn1_set_param(*ameth
,
910 gost94_param_decode
, gost94_param_encode
,
911 param_missing_gost94
, param_copy_gost94
,
912 param_cmp_gost94
, param_print_gost94
);
913 EVP_PKEY_asn1_set_public(*ameth
,
914 pub_decode_gost94
, pub_encode_gost94
,
915 pub_cmp_gost94
, pub_print_gost94
,
916 pkey_size_gost
, pkey_bits_gost
);
918 EVP_PKEY_asn1_set_ctrl(*ameth
, pkey_ctrl_gost
);
920 case NID_id_GostR3410_2001
:
921 EVP_PKEY_asn1_set_free(*ameth
, pkey_free_gost01
);
922 EVP_PKEY_asn1_set_private(*ameth
,
923 priv_decode_gost
, priv_encode_gost
,
926 EVP_PKEY_asn1_set_param(*ameth
,
927 gost2001_param_decode
, gost2001_param_encode
,
928 param_missing_gost01
, param_copy_gost01
,
929 param_cmp_gost01
, param_print_gost01
);
930 EVP_PKEY_asn1_set_public(*ameth
,
931 pub_decode_gost01
, pub_encode_gost01
,
932 pub_cmp_gost01
, pub_print_gost01
,
933 pkey_size_gost
, pkey_bits_gost
);
935 EVP_PKEY_asn1_set_ctrl(*ameth
, pkey_ctrl_gost
);
937 case NID_id_Gost28147_89_MAC
:
938 EVP_PKEY_asn1_set_free(*ameth
, mackey_free_gost
);
939 EVP_PKEY_asn1_set_ctrl(*ameth
, mac_ctrl_gost
);