]> git.ipfire.org Git - thirdparty/openssl.git/blob - providers/implementations/serializers/serializer_rsa_pub.c
Rename OSSL_SERIALIZER / OSSL_DESERIALIZER to OSSL_ENCODE / OSSL_DECODE
[thirdparty/openssl.git] / providers / implementations / serializers / serializer_rsa_pub.c
1 /*
2 * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10 /*
11 * RSA low level APIs are deprecated for public use, but still ok for
12 * internal use.
13 */
14 #include "internal/deprecated.h"
15
16 #include <openssl/core_dispatch.h>
17 #include <openssl/pem.h>
18 #include <openssl/rsa.h>
19 #include <openssl/types.h>
20 #include <openssl/params.h>
21 #include "prov/bio.h"
22 #include "prov/implementations.h"
23 #include "prov/providercommonerr.h"
24 #include "prov/provider_ctx.h"
25 #include "serializer_local.h"
26
27 static OSSL_FUNC_serializer_newctx_fn rsa_pub_newctx;
28 static OSSL_FUNC_serializer_freectx_fn rsa_pub_freectx;
29 static OSSL_FUNC_serializer_serialize_data_fn rsa_pub_der_data;
30 static OSSL_FUNC_serializer_serialize_object_fn rsa_pub_der;
31 static OSSL_FUNC_serializer_serialize_data_fn rsa_pub_pem_data;
32 static OSSL_FUNC_serializer_serialize_object_fn rsa_pub_pem;
33
34 static OSSL_FUNC_serializer_serialize_data_fn rsa_pub_print_data;
35 static OSSL_FUNC_serializer_serialize_object_fn rsa_pub_print;
36
37 /* Public key : context */
38
39 /*
40 * There's no specific implementation context, so we use the provider context
41 */
42 static void *rsa_pub_newctx(void *provctx)
43 {
44 return provctx;
45 }
46
47 static void rsa_pub_freectx(void *ctx)
48 {
49 }
50
51 /* Public key : DER */
52 static int rsa_pub_der_data(void *ctx, const OSSL_PARAM params[],
53 OSSL_CORE_BIO *out,
54 OSSL_PASSPHRASE_CALLBACK *cb, void *cbarg)
55 {
56 OSSL_FUNC_keymgmt_new_fn *rsa_new = ossl_prov_get_keymgmt_rsa_new();
57 OSSL_FUNC_keymgmt_free_fn *rsa_free = ossl_prov_get_keymgmt_rsa_free();
58 OSSL_FUNC_keymgmt_import_fn *rsa_import = ossl_prov_get_keymgmt_rsa_import();
59 int ok = 0;
60
61 if (rsa_import != NULL) {
62 RSA *rsa;
63
64 /* ctx == provctx */
65 if ((rsa = rsa_new(ctx)) != NULL
66 && rsa_import(rsa, OSSL_KEYMGMT_SELECT_KEYPAIR, params)
67 && rsa_pub_der(ctx, rsa, out, cb, cbarg))
68 ok = 1;
69 rsa_free(rsa);
70 }
71 return ok;
72 }
73
74 static int rsa_pub_der(void *ctx, void *rsa, OSSL_CORE_BIO *cout,
75 OSSL_PASSPHRASE_CALLBACK *cb, void *cbarg)
76 {
77 BIO *out = bio_new_from_core_bio(ctx, cout);
78 int ret;
79
80 if (out == NULL)
81 return 0;
82
83 ret = ossl_prov_write_pub_der_from_obj(out, rsa,
84 ossl_prov_rsa_type_to_evp(rsa),
85 ossl_prov_prepare_rsa_params,
86 (i2d_of_void *)i2d_RSAPublicKey);
87 BIO_free(out);
88
89 return ret;
90 }
91
92 /* Public key : PEM */
93 static int rsa_pub_pem_data(void *ctx, const OSSL_PARAM params[],
94 OSSL_CORE_BIO *out,
95 OSSL_PASSPHRASE_CALLBACK *cb, void *cbarg)
96 {
97 OSSL_FUNC_keymgmt_new_fn *rsa_new = ossl_prov_get_keymgmt_rsa_new();
98 OSSL_FUNC_keymgmt_free_fn *rsa_free = ossl_prov_get_keymgmt_rsa_free();
99 OSSL_FUNC_keymgmt_import_fn *rsa_import = ossl_prov_get_keymgmt_rsa_import();
100 int ok = 0;
101
102 if (rsa_import != NULL) {
103 RSA *rsa;
104
105 /* ctx == provctx */
106 if ((rsa = rsa_new(ctx)) != NULL
107 && rsa_import(rsa, OSSL_KEYMGMT_SELECT_KEYPAIR, params)
108 && rsa_pub_pem(ctx, rsa, out, cb, cbarg))
109 ok = 1;
110 rsa_free(rsa);
111 }
112 return ok;
113 }
114
115 static int rsa_pub_pem(void *ctx, void *rsa, OSSL_CORE_BIO *cout,
116 OSSL_PASSPHRASE_CALLBACK *cb, void *cbarg)
117 {
118 BIO *out = bio_new_from_core_bio(ctx, cout);
119 int ret;
120
121 if (out == NULL)
122 return 0;
123
124 ret = ossl_prov_write_pub_pem_from_obj(out, rsa,
125 ossl_prov_rsa_type_to_evp(rsa),
126 ossl_prov_prepare_rsa_params,
127 (i2d_of_void *)i2d_RSAPublicKey);
128 BIO_free(out);
129
130 return ret;
131 }
132
133 static int rsa_pub_print_data(void *ctx, const OSSL_PARAM params[],
134 OSSL_CORE_BIO *out,
135 OSSL_PASSPHRASE_CALLBACK *cb, void *cbarg)
136 {
137 OSSL_FUNC_keymgmt_new_fn *rsa_new = ossl_prov_get_keymgmt_rsa_new();
138 OSSL_FUNC_keymgmt_free_fn *rsa_free = ossl_prov_get_keymgmt_rsa_free();
139 OSSL_FUNC_keymgmt_import_fn *rsa_import = ossl_prov_get_keymgmt_rsa_import();
140 int ok = 0;
141
142 if (rsa_import != NULL) {
143 RSA *rsa;
144
145 /* ctx == provctx */
146 if ((rsa = rsa_new(ctx)) != NULL
147 && rsa_import(rsa, OSSL_KEYMGMT_SELECT_KEYPAIR, params)
148 && rsa_pub_print(ctx, rsa, out, cb, cbarg))
149 ok = 1;
150 rsa_free(rsa);
151 }
152 return ok;
153 }
154
155 static int rsa_pub_print(void *ctx, void *rsa, OSSL_CORE_BIO *cout,
156 OSSL_PASSPHRASE_CALLBACK *cb, void *cbarg)
157 {
158 BIO *out = bio_new_from_core_bio(ctx, cout);
159 int ret;
160
161 if (out == NULL)
162 return 0;
163
164 ret = ossl_prov_print_rsa(out, rsa, 0);
165 BIO_free(out);
166
167 return ret;
168 }
169
170 const OSSL_DISPATCH rsa_pub_der_serializer_functions[] = {
171 { OSSL_FUNC_SERIALIZER_NEWCTX, (void (*)(void))rsa_pub_newctx },
172 { OSSL_FUNC_SERIALIZER_FREECTX, (void (*)(void))rsa_pub_freectx },
173 { OSSL_FUNC_SERIALIZER_SERIALIZE_DATA, (void (*)(void))rsa_pub_der_data },
174 { OSSL_FUNC_SERIALIZER_SERIALIZE_OBJECT, (void (*)(void))rsa_pub_der },
175 { 0, NULL }
176 };
177
178 const OSSL_DISPATCH rsa_pub_pem_serializer_functions[] = {
179 { OSSL_FUNC_SERIALIZER_NEWCTX, (void (*)(void))rsa_pub_newctx },
180 { OSSL_FUNC_SERIALIZER_FREECTX, (void (*)(void))rsa_pub_freectx },
181 { OSSL_FUNC_SERIALIZER_SERIALIZE_DATA, (void (*)(void))rsa_pub_pem_data },
182 { OSSL_FUNC_SERIALIZER_SERIALIZE_OBJECT, (void (*)(void))rsa_pub_pem },
183 { 0, NULL }
184 };
185
186 const OSSL_DISPATCH rsa_pub_text_serializer_functions[] = {
187 { OSSL_FUNC_SERIALIZER_NEWCTX, (void (*)(void))rsa_pub_newctx },
188 { OSSL_FUNC_SERIALIZER_FREECTX, (void (*)(void))rsa_pub_freectx },
189 { OSSL_FUNC_SERIALIZER_SERIALIZE_OBJECT, (void (*)(void))rsa_pub_print },
190 { OSSL_FUNC_SERIALIZER_SERIALIZE_DATA,
191 (void (*)(void))rsa_pub_print_data },
192 { 0, NULL }
193 };