p_ec_asn1.c
Go to the documentation of this file.
1 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
2  * project 2006.
3  */
4 /* ====================================================================
5  * Copyright (c) 2006 The OpenSSL Project. All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  *
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
17  * distribution.
18  *
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/)"
23  *
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.
28  *
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.
32  *
33  * 6. Redistributions of any form whatsoever must retain the following
34  * acknowledgment:
35  * "This product includes software developed by the OpenSSL Project
36  * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
37  *
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  * ====================================================================
51  *
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). */
55 
56 #include <openssl/evp.h>
57 
58 #include <openssl/bn.h>
59 #include <openssl/bytestring.h>
60 #include <openssl/ec.h>
61 #include <openssl/ec_key.h>
62 #include <openssl/ecdsa.h>
63 #include <openssl/err.h>
64 
65 #include "internal.h"
66 
67 
68 static int eckey_pub_encode(CBB *out, const EVP_PKEY *key) {
69  const EC_KEY *ec_key = key->pkey.ec;
70  const EC_GROUP *group = EC_KEY_get0_group(ec_key);
72 
73  // See RFC 5480, section 2.
74  CBB spki, algorithm, oid, key_bitstring;
75  if (!CBB_add_asn1(out, &spki, CBS_ASN1_SEQUENCE) ||
76  !CBB_add_asn1(&spki, &algorithm, CBS_ASN1_SEQUENCE) ||
77  !CBB_add_asn1(&algorithm, &oid, CBS_ASN1_OBJECT) ||
79  !EC_KEY_marshal_curve_name(&algorithm, group) ||
80  !CBB_add_asn1(&spki, &key_bitstring, CBS_ASN1_BITSTRING) ||
81  !CBB_add_u8(&key_bitstring, 0 /* padding */) ||
82  !EC_POINT_point2cbb(&key_bitstring, group, public_key,
84  !CBB_flush(out)) {
86  return 0;
87  }
88 
89  return 1;
90 }
91 
92 static int eckey_pub_decode(EVP_PKEY *out, CBS *params, CBS *key) {
93  // See RFC 5480, section 2.
94 
95  // The parameters are a named curve.
96  EC_POINT *point = NULL;
97  EC_KEY *eckey = NULL;
99  if (group == NULL || CBS_len(params) != 0) {
101  goto err;
102  }
103 
104  eckey = EC_KEY_new();
105  if (eckey == NULL || !EC_KEY_set_group(eckey, group)) {
106  goto err;
107  }
108 
110  if (point == NULL ||
112  !EC_KEY_set_public_key(eckey, point)) {
113  goto err;
114  }
115 
118  EVP_PKEY_assign_EC_KEY(out, eckey);
119  return 1;
120 
121 err:
124  EC_KEY_free(eckey);
125  return 0;
126 }
127 
128 static int eckey_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b) {
129  int r;
130  const EC_GROUP *group = EC_KEY_get0_group(b->pkey.ec);
131  const EC_POINT *pa = EC_KEY_get0_public_key(a->pkey.ec),
132  *pb = EC_KEY_get0_public_key(b->pkey.ec);
133  r = EC_POINT_cmp(group, pa, pb, NULL);
134  if (r == 0) {
135  return 1;
136  } else if (r == 1) {
137  return 0;
138  } else {
139  return -2;
140  }
141 }
142 
143 static int eckey_priv_decode(EVP_PKEY *out, CBS *params, CBS *key) {
144  // See RFC 5915.
146  if (group == NULL || CBS_len(params) != 0) {
149  return 0;
150  }
151 
154  if (ec_key == NULL || CBS_len(key) != 0) {
156  EC_KEY_free(ec_key);
157  return 0;
158  }
159 
160  EVP_PKEY_assign_EC_KEY(out, ec_key);
161  return 1;
162 }
163 
164 static int eckey_priv_encode(CBB *out, const EVP_PKEY *key) {
165  const EC_KEY *ec_key = key->pkey.ec;
166 
167  // Omit the redundant copy of the curve name. This contradicts RFC 5915 but
168  // aligns with PKCS #11. SEC 1 only says they may be omitted if known by other
169  // means. Both OpenSSL and NSS omit the redundant parameters, so we omit them
170  // as well.
171  unsigned enc_flags = EC_KEY_get_enc_flags(ec_key) | EC_PKEY_NO_PARAMETERS;
172 
173  // See RFC 5915.
174  CBB pkcs8, algorithm, oid, private_key;
175  if (!CBB_add_asn1(out, &pkcs8, CBS_ASN1_SEQUENCE) ||
176  !CBB_add_asn1_uint64(&pkcs8, 0 /* version */) ||
177  !CBB_add_asn1(&pkcs8, &algorithm, CBS_ASN1_SEQUENCE) ||
178  !CBB_add_asn1(&algorithm, &oid, CBS_ASN1_OBJECT) ||
180  !EC_KEY_marshal_curve_name(&algorithm, EC_KEY_get0_group(ec_key)) ||
182  !EC_KEY_marshal_private_key(&private_key, ec_key, enc_flags) ||
183  !CBB_flush(out)) {
185  return 0;
186  }
187 
188  return 1;
189 }
190 
191 static int int_ec_size(const EVP_PKEY *pkey) {
192  return ECDSA_size(pkey->pkey.ec);
193 }
194 
195 static int ec_bits(const EVP_PKEY *pkey) {
196  const EC_GROUP *group = EC_KEY_get0_group(pkey->pkey.ec);
197  if (group == NULL) {
198  ERR_clear_error();
199  return 0;
200  }
202 }
203 
204 static int ec_missing_parameters(const EVP_PKEY *pkey) {
205  return EC_KEY_get0_group(pkey->pkey.ec) == NULL;
206 }
207 
209  return EC_KEY_set_group(to->pkey.ec, EC_KEY_get0_group(from->pkey.ec));
210 }
211 
212 static int ec_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b) {
213  const EC_GROUP *group_a = EC_KEY_get0_group(a->pkey.ec),
214  *group_b = EC_KEY_get0_group(b->pkey.ec);
215  if (EC_GROUP_cmp(group_a, group_b, NULL) != 0) {
216  // mismatch
217  return 0;
218  }
219  return 1;
220 }
221 
222 static void int_ec_free(EVP_PKEY *pkey) { EC_KEY_free(pkey->pkey.ec); }
223 
224 static int eckey_opaque(const EVP_PKEY *pkey) {
225  return EC_KEY_is_opaque(pkey->pkey.ec);
226 }
227 
229  EVP_PKEY_EC,
230  // 1.2.840.10045.2.1
231  {0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01}, 7,
232 
236 
239 
240  NULL /* set_priv_raw */,
241  NULL /* set_pub_raw */,
242  NULL /* get_priv_raw */,
243  NULL /* get_pub_raw */,
244 
245  eckey_opaque,
246 
247  int_ec_size,
248  ec_bits,
249 
253 
254  int_ec_free,
255 };
EC_GROUP_get0_order
#define EC_GROUP_get0_order
Definition: boringssl_prefix_symbols.h:1323
bn.h
EC_POINT_new
#define EC_POINT_new
Definition: boringssl_prefix_symbols.h:1384
EVP_PKEY_EC
#define EVP_PKEY_EC
Definition: evp.h:178
CBB_flush
#define CBB_flush
Definition: boringssl_prefix_symbols.h:1045
public_key
Definition: hrss.c:1881
gen_build_yaml.out
dictionary out
Definition: src/benchmark/gen_build_yaml.py:24
EC_KEY_parse_private_key
#define EC_KEY_parse_private_key
Definition: boringssl_prefix_symbols.h:1360
ec_copy_parameters
static int ec_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
Definition: p_ec_asn1.c:208
cbs_st
Definition: bytestring.h:39
EC_KEY_new
#define EC_KEY_new
Definition: boringssl_prefix_symbols.h:1355
evp_pkey_st::ec
EC_KEY * ec
Definition: evp.h:1058
evp.h
CBS_data
#define CBS_data
Definition: boringssl_prefix_symbols.h:1057
EC_KEY_marshal_private_key
#define EC_KEY_marshal_private_key
Definition: boringssl_prefix_symbols.h:1354
ecdsa.h
OPENSSL_PUT_ERROR
#define OPENSSL_PUT_ERROR(library, reason)
Definition: err.h:423
CBS_ASN1_OCTETSTRING
#define CBS_ASN1_OCTETSTRING
Definition: bytestring.h:209
CBB_add_u8
#define CBB_add_u8
Definition: boringssl_prefix_symbols.h:1036
ec_cmp_parameters
static int ec_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
Definition: p_ec_asn1.c:212
EC_KEY_set_group
#define EC_KEY_set_group
Definition: boringssl_prefix_symbols.h:1365
EC_KEY_set_public_key
#define EC_KEY_set_public_key
Definition: boringssl_prefix_symbols.h:1367
EC_KEY_marshal_curve_name
#define EC_KEY_marshal_curve_name
Definition: boringssl_prefix_symbols.h:1353
error_ref_leak.err
err
Definition: error_ref_leak.py:35
evp_pkey_asn1_method_st::oid_len
uint8_t oid_len
Definition: third_party/boringssl-with-bazel/src/crypto/evp/internal.h:72
CBS_len
#define CBS_len
Definition: boringssl_prefix_symbols.h:1089
eckey_pub_decode
static int eckey_pub_decode(EVP_PKEY *out, CBS *params, CBS *key)
Definition: p_ec_asn1.c:92
a
int a
Definition: abseil-cpp/absl/container/internal/hash_policy_traits_test.cc:88
to
size_t to
Definition: abseil-cpp/absl/container/internal/layout_test.cc:1385
EC_KEY_get0_group
#define EC_KEY_get0_group
Definition: boringssl_prefix_symbols.h:1344
EVP_R_ENCODE_ERROR
#define EVP_R_ENCODE_ERROR
Definition: evp_errors.h:65
EC_KEY_get_enc_flags
#define EC_KEY_get_enc_flags
Definition: boringssl_prefix_symbols.h:1348
ec_bits
static int ec_bits(const EVP_PKEY *pkey)
Definition: p_ec_asn1.c:195
from
size_t from
Definition: abseil-cpp/absl/container/internal/layout_test.cc:1384
EVP_R_DECODE_ERROR
#define EVP_R_DECODE_ERROR
Definition: evp_errors.h:62
EC_GROUP_free
#define EC_GROUP_free
Definition: boringssl_prefix_symbols.h:1321
bytestring.h
EC_KEY_is_opaque
#define EC_KEY_is_opaque
Definition: boringssl_prefix_symbols.h:1351
internal.h
ec_missing_parameters
static int ec_missing_parameters(const EVP_PKEY *pkey)
Definition: p_ec_asn1.c:204
evp_pkey_st
Definition: evp.h:1046
oid
uint8_t oid[9]
Definition: digest_extra.c:124
eckey_priv_encode
static int eckey_priv_encode(CBB *out, const EVP_PKEY *key)
Definition: p_ec_asn1.c:164
EC_GROUP_cmp
#define EC_GROUP_cmp
Definition: boringssl_prefix_symbols.h:1319
eckey_priv_decode
static int eckey_priv_decode(EVP_PKEY *out, CBS *params, CBS *key)
Definition: p_ec_asn1.c:143
EC_KEY_parse_curve_name
#define EC_KEY_parse_curve_name
Definition: boringssl_prefix_symbols.h:1358
int_ec_size
static int int_ec_size(const EVP_PKEY *pkey)
Definition: p_ec_asn1.c:191
EC_KEY_parse_parameters
#define EC_KEY_parse_parameters
Definition: boringssl_prefix_symbols.h:1359
CBB_add_asn1
#define CBB_add_asn1
Definition: boringssl_prefix_symbols.h:1019
err.h
EC_POINT_free
#define EC_POINT_free
Definition: boringssl_prefix_symbols.h:1377
EC_KEY_get0_public_key
#define EC_KEY_get0_public_key
Definition: boringssl_prefix_symbols.h:1346
ec_key.h
b
uint64_t b
Definition: abseil-cpp/absl/container/internal/layout_test.cc:53
EC_KEY_free
#define EC_KEY_free
Definition: boringssl_prefix_symbols.h:1341
EC_PKEY_NO_PARAMETERS
#define EC_PKEY_NO_PARAMETERS
Definition: ec_key.h:145
ec_key_st
Definition: third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h:723
BN_num_bits
#define BN_num_bits
Definition: boringssl_prefix_symbols.h:974
point
Definition: bloaty/third_party/zlib/examples/zran.c:67
evp_pkey_st::pkey
union evp_pkey_st::@364 pkey
CBB_add_bytes
#define CBB_add_bytes
Definition: boringssl_prefix_symbols.h:1025
key
const char * key
Definition: hpack_parser_table.cc:164
upload.group
group
Definition: bloaty/third_party/googletest/googlemock/scripts/upload.py:397
CBS_ASN1_BITSTRING
#define CBS_ASN1_BITSTRING
Definition: bytestring.h:208
EC_POINT_cmp
#define EC_POINT_cmp
Definition: boringssl_prefix_symbols.h:1373
EC_POINT_oct2point
#define EC_POINT_oct2point
Definition: boringssl_prefix_symbols.h:1385
POINT_CONVERSION_UNCOMPRESSED
@ POINT_CONVERSION_UNCOMPRESSED
Definition: ec.h:91
CBS_ASN1_OBJECT
#define CBS_ASN1_OBJECT
Definition: bytestring.h:211
ec_point_st
Definition: third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h:615
ec_asn1_meth
const EVP_PKEY_ASN1_METHOD ec_asn1_meth
Definition: p_ec_asn1.c:228
eckey_pub_encode
static int eckey_pub_encode(CBB *out, const EVP_PKEY *key)
Definition: p_ec_asn1.c:68
private_key
Definition: hrss.c:1885
ec_group_st
Definition: third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h:573
fix_build_deps.r
r
Definition: fix_build_deps.py:491
EVP_PKEY_assign_EC_KEY
#define EVP_PKEY_assign_EC_KEY
Definition: boringssl_prefix_symbols.h:1611
ERR_clear_error
#define ERR_clear_error
Definition: boringssl_prefix_symbols.h:1413
int_ec_free
static void int_ec_free(EVP_PKEY *pkey)
Definition: p_ec_asn1.c:222
eckey_opaque
static int eckey_opaque(const EVP_PKEY *pkey)
Definition: p_ec_asn1.c:224
evp_pkey_asn1_method_st
Definition: third_party/boringssl-with-bazel/src/crypto/evp/internal.h:69
EC_POINT_point2cbb
#define EC_POINT_point2cbb
Definition: boringssl_prefix_symbols.h:1386
ECDSA_size
#define ECDSA_size
Definition: boringssl_prefix_symbols.h:1313
CBS_ASN1_SEQUENCE
#define CBS_ASN1_SEQUENCE
Definition: bytestring.h:214
tests.interop.resources.private_key
def private_key()
Definition: interop/resources.py:29
ec.h
eckey_pub_cmp
static int eckey_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
Definition: p_ec_asn1.c:128
evp_pkey_asn1_method_st::oid
uint8_t oid[9]
Definition: third_party/boringssl-with-bazel/src/crypto/evp/internal.h:71
CBB_add_asn1_uint64
#define CBB_add_asn1_uint64
Definition: boringssl_prefix_symbols.h:1024
cbb_st
Definition: bytestring.h:375


grpc
Author(s):
autogenerated on Fri May 16 2025 02:59:38