p_rsa_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/digest.h>
61 #include <openssl/err.h>
62 #include <openssl/mem.h>
63 #include <openssl/rsa.h>
64 
65 #include "../fipsmodule/rsa/internal.h"
66 #include "internal.h"
67 
68 
69 static int rsa_pub_encode(CBB *out, const EVP_PKEY *key) {
70  // See RFC 3279, section 2.3.1.
71  CBB spki, algorithm, oid, null, key_bitstring;
72  if (!CBB_add_asn1(out, &spki, CBS_ASN1_SEQUENCE) ||
73  !CBB_add_asn1(&spki, &algorithm, CBS_ASN1_SEQUENCE) ||
74  !CBB_add_asn1(&algorithm, &oid, CBS_ASN1_OBJECT) ||
76  !CBB_add_asn1(&algorithm, &null, CBS_ASN1_NULL) ||
77  !CBB_add_asn1(&spki, &key_bitstring, CBS_ASN1_BITSTRING) ||
78  !CBB_add_u8(&key_bitstring, 0 /* padding */) ||
79  !RSA_marshal_public_key(&key_bitstring, key->pkey.rsa) ||
80  !CBB_flush(out)) {
82  return 0;
83  }
84 
85  return 1;
86 }
87 
88 static int rsa_pub_decode(EVP_PKEY *out, CBS *params, CBS *key) {
89  // See RFC 3279, section 2.3.1.
90 
91  // The parameters must be NULL.
92  CBS null;
93  if (!CBS_get_asn1(params, &null, CBS_ASN1_NULL) ||
94  CBS_len(&null) != 0 ||
95  CBS_len(params) != 0) {
97  return 0;
98  }
99 
100  RSA *rsa = RSA_parse_public_key(key);
101  if (rsa == NULL || CBS_len(key) != 0) {
103  RSA_free(rsa);
104  return 0;
105  }
106 
107  EVP_PKEY_assign_RSA(out, rsa);
108  return 1;
109 }
110 
111 static int rsa_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b) {
112  return BN_cmp(b->pkey.rsa->n, a->pkey.rsa->n) == 0 &&
113  BN_cmp(b->pkey.rsa->e, a->pkey.rsa->e) == 0;
114 }
115 
116 static int rsa_priv_encode(CBB *out, const EVP_PKEY *key) {
117  CBB pkcs8, algorithm, oid, null, private_key;
118  if (!CBB_add_asn1(out, &pkcs8, CBS_ASN1_SEQUENCE) ||
119  !CBB_add_asn1_uint64(&pkcs8, 0 /* version */) ||
120  !CBB_add_asn1(&pkcs8, &algorithm, CBS_ASN1_SEQUENCE) ||
121  !CBB_add_asn1(&algorithm, &oid, CBS_ASN1_OBJECT) ||
123  !CBB_add_asn1(&algorithm, &null, CBS_ASN1_NULL) ||
125  !RSA_marshal_private_key(&private_key, key->pkey.rsa) ||
126  !CBB_flush(out)) {
128  return 0;
129  }
130 
131  return 1;
132 }
133 
134 static int rsa_priv_decode(EVP_PKEY *out, CBS *params, CBS *key) {
135  // Per RFC 3447, A.1, the parameters have type NULL.
136  CBS null;
137  if (!CBS_get_asn1(params, &null, CBS_ASN1_NULL) ||
138  CBS_len(&null) != 0 ||
139  CBS_len(params) != 0) {
141  return 0;
142  }
143 
144  RSA *rsa = RSA_parse_private_key(key);
145  if (rsa == NULL || CBS_len(key) != 0) {
147  RSA_free(rsa);
148  return 0;
149  }
150 
151  EVP_PKEY_assign_RSA(out, rsa);
152  return 1;
153 }
154 
155 static int rsa_opaque(const EVP_PKEY *pkey) {
156  return RSA_is_opaque(pkey->pkey.rsa);
157 }
158 
159 static int int_rsa_size(const EVP_PKEY *pkey) {
160  return RSA_size(pkey->pkey.rsa);
161 }
162 
163 static int rsa_bits(const EVP_PKEY *pkey) {
164  return RSA_bits(pkey->pkey.rsa);
165 }
166 
167 static void int_rsa_free(EVP_PKEY *pkey) { RSA_free(pkey->pkey.rsa); }
168 
170  EVP_PKEY_RSA,
171  // 1.2.840.113549.1.1.1
172  {0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01}, 9,
173 
176  rsa_pub_cmp,
177 
180 
181  NULL /* set_priv_raw */,
182  NULL /* set_pub_raw */,
183  NULL /* get_priv_raw */,
184  NULL /* get_pub_raw */,
185 
186  rsa_opaque,
187 
188  int_rsa_size,
189  rsa_bits,
190 
191  0,0,0,
192 
193  int_rsa_free,
194 };
bn.h
CBB_flush
#define CBB_flush
Definition: boringssl_prefix_symbols.h:1045
gen_build_yaml.out
dictionary out
Definition: src/benchmark/gen_build_yaml.py:24
cbs_st
Definition: bytestring.h:39
RSA_parse_private_key
#define RSA_parse_private_key
Definition: boringssl_prefix_symbols.h:2120
evp.h
evp_pkey_st::rsa
RSA * rsa
Definition: evp.h:1055
RSA_size
#define RSA_size
Definition: boringssl_prefix_symbols.h:2139
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
rsa_pub_encode
static int rsa_pub_encode(CBB *out, const EVP_PKEY *key)
Definition: p_rsa_asn1.c:69
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
EVP_PKEY_RSA
#define EVP_PKEY_RSA
Definition: evp.h:175
CBS_get_asn1
#define CBS_get_asn1
Definition: boringssl_prefix_symbols.h:1061
a
int a
Definition: abseil-cpp/absl/container/internal/hash_policy_traits_test.cc:88
EVP_R_ENCODE_ERROR
#define EVP_R_ENCODE_ERROR
Definition: evp_errors.h:65
rsa_priv_decode
static int rsa_priv_decode(EVP_PKEY *out, CBS *params, CBS *key)
Definition: p_rsa_asn1.c:134
RSA_marshal_public_key
#define RSA_marshal_public_key
Definition: boringssl_prefix_symbols.h:2109
EVP_R_DECODE_ERROR
#define EVP_R_DECODE_ERROR
Definition: evp_errors.h:62
CBS_ASN1_NULL
#define CBS_ASN1_NULL
Definition: bytestring.h:210
bytestring.h
int_rsa_size
static int int_rsa_size(const EVP_PKEY *pkey)
Definition: p_rsa_asn1.c:159
internal.h
evp_pkey_st
Definition: evp.h:1046
oid
uint8_t oid[9]
Definition: digest_extra.c:124
RSA_free
#define RSA_free
Definition: boringssl_prefix_symbols.h:2090
RSA_parse_public_key
#define RSA_parse_public_key
Definition: boringssl_prefix_symbols.h:2121
rsa_bits
static int rsa_bits(const EVP_PKEY *pkey)
Definition: p_rsa_asn1.c:163
CBB_add_asn1
#define CBB_add_asn1
Definition: boringssl_prefix_symbols.h:1019
err.h
rsa.h
rsa_opaque
static int rsa_opaque(const EVP_PKEY *pkey)
Definition: p_rsa_asn1.c:155
EVP_PKEY_assign_RSA
#define EVP_PKEY_assign_RSA
Definition: boringssl_prefix_symbols.h:1612
b
uint64_t b
Definition: abseil-cpp/absl/container/internal/layout_test.cc:53
int_rsa_free
static void int_rsa_free(EVP_PKEY *pkey)
Definition: p_rsa_asn1.c:167
rsa_asn1_meth
const EVP_PKEY_ASN1_METHOD rsa_asn1_meth
Definition: p_rsa_asn1.c:169
evp_pkey_st::pkey
union evp_pkey_st::@364 pkey
CBB_add_bytes
#define CBB_add_bytes
Definition: boringssl_prefix_symbols.h:1025
digest.h
key
const char * key
Definition: hpack_parser_table.cc:164
CBS_ASN1_BITSTRING
#define CBS_ASN1_BITSTRING
Definition: bytestring.h:208
RSA_bits
#define RSA_bits
Definition: boringssl_prefix_symbols.h:2082
rsa_pub_decode
static int rsa_pub_decode(EVP_PKEY *out, CBS *params, CBS *key)
Definition: p_rsa_asn1.c:88
CBS_ASN1_OBJECT
#define CBS_ASN1_OBJECT
Definition: bytestring.h:211
private_key
Definition: hrss.c:1885
BN_cmp
#define BN_cmp
Definition: boringssl_prefix_symbols.h:912
RSA_is_opaque
#define RSA_is_opaque
Definition: boringssl_prefix_symbols.h:2107
evp_pkey_asn1_method_st
Definition: third_party/boringssl-with-bazel/src/crypto/evp/internal.h:69
mem.h
rsa_st
Definition: rsa.h:732
rsa_priv_encode
static int rsa_priv_encode(CBB *out, const EVP_PKEY *key)
Definition: p_rsa_asn1.c:116
CBS_ASN1_SEQUENCE
#define CBS_ASN1_SEQUENCE
Definition: bytestring.h:214
tests.interop.resources.private_key
def private_key()
Definition: interop/resources.py:29
RSA_marshal_private_key
#define RSA_marshal_private_key
Definition: boringssl_prefix_symbols.h:2108
evp_pkey_asn1_method_st::oid
uint8_t oid[9]
Definition: third_party/boringssl-with-bazel/src/crypto/evp/internal.h:71
rsa_pub_cmp
static int rsa_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
Definition: p_rsa_asn1.c:111
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