blob: 0ec65ab047bcffd11a78aad0bd3239e04d93b6ec [file] [log] [blame]
Richard Levittec403a1d2016-11-19 19:38:23 +01001/*
Matt Caswell33388b42020-04-23 13:55:52 +01002 * Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
Richard Levittec403a1d2016-11-19 19:38:23 +01003 *
Richard Levittedffa7522018-12-06 13:00:26 +01004 * Licensed under the Apache License 2.0 (the "License"). You may not use
Richard Levittec403a1d2016-11-19 19:38:23 +01005 * 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#include <openssl/opensslconf.h>
11
12#include "apps.h"
Richard Levittedab2cd62018-01-31 11:13:10 +010013#include "progs.h"
Richard Levittec403a1d2016-11-19 19:38:23 +010014#include <openssl/err.h>
15#include <openssl/pem.h>
16#include <openssl/store.h>
Richard Levitte946ec582018-02-28 18:08:51 +010017#include <openssl/x509v3.h> /* s2i_ASN1_INTEGER */
Richard Levittec403a1d2016-11-19 19:38:23 +010018
Richard Levittefb43ddc2017-09-04 15:42:01 +020019static int process(const char *uri, const UI_METHOD *uimeth, PW_CB_DATA *uidata,
Richard Levitte511e4e02017-02-20 02:47:56 +010020 int expected, int criterion, OSSL_STORE_SEARCH *search,
21 int text, int noout, int recursive, int indent, BIO *out,
Dr. Matthias St. Pierreb4250012020-10-15 12:55:50 +030022 const char *prog, OSSL_LIB_CTX *libctx, const char *propq);
Richard Levittefb43ddc2017-09-04 15:42:01 +020023
Richard Levittec403a1d2016-11-19 19:38:23 +010024typedef enum OPTION_choice {
25 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP, OPT_ENGINE, OPT_OUT, OPT_PASSIN,
Richard Levitte9511d972017-02-11 03:20:45 +010026 OPT_NOOUT, OPT_TEXT, OPT_RECURSIVE,
Richard Levitte511e4e02017-02-20 02:47:56 +010027 OPT_SEARCHFOR_CERTS, OPT_SEARCHFOR_KEYS, OPT_SEARCHFOR_CRLS,
28 OPT_CRITERION_SUBJECT, OPT_CRITERION_ISSUER, OPT_CRITERION_SERIAL,
29 OPT_CRITERION_FINGERPRINT, OPT_CRITERION_ALIAS,
Pauli6bd4e3f2020-02-25 14:29:30 +100030 OPT_MD, OPT_PROV_ENUM
Richard Levittec403a1d2016-11-19 19:38:23 +010031} OPTION_CHOICE;
32
33const OPTIONS storeutl_options[] = {
Rich Salz5388f982019-11-08 06:08:30 +100034 {OPT_HELP_STR, 1, '-', "Usage: %s [options] uri\n"},
35
36 OPT_SECTION("General"),
Richard Levittec403a1d2016-11-19 19:38:23 +010037 {"help", OPT_HELP, '-', "Display this summary"},
Rich Salz5388f982019-11-08 06:08:30 +100038 {"", OPT_MD, '-', "Any supported digest"},
39#ifndef OPENSSL_NO_ENGINE
40 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
41#endif
42
43 OPT_SECTION("Search"),
Richard Levitte9511d972017-02-11 03:20:45 +010044 {"certs", OPT_SEARCHFOR_CERTS, '-', "Search for certificates only"},
45 {"keys", OPT_SEARCHFOR_KEYS, '-', "Search for keys only"},
46 {"crls", OPT_SEARCHFOR_CRLS, '-', "Search for CRLs only"},
Richard Levitte511e4e02017-02-20 02:47:56 +010047 {"subject", OPT_CRITERION_SUBJECT, 's', "Search by subject"},
48 {"issuer", OPT_CRITERION_ISSUER, 's', "Search by issuer and serial, issuer name"},
49 {"serial", OPT_CRITERION_SERIAL, 's', "Search by issuer and serial, serial number"},
50 {"fingerprint", OPT_CRITERION_FINGERPRINT, 's', "Search by public key fingerprint, given in hex"},
51 {"alias", OPT_CRITERION_ALIAS, 's', "Search by alias"},
Richard Levittefb43ddc2017-09-04 15:42:01 +020052 {"r", OPT_RECURSIVE, '-', "Recurse through names"},
Rich Salz5388f982019-11-08 06:08:30 +100053
54 OPT_SECTION("Input"),
55 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
56
57 OPT_SECTION("Output"),
58 {"out", OPT_OUT, '>', "Output file - default stdout"},
59 {"text", OPT_TEXT, '-', "Print a text form of the objects"},
60 {"noout", OPT_NOOUT, '-', "No PEM output, just status"},
Rich Salz92de4692019-09-19 21:33:17 -040061
Pauli6bd4e3f2020-02-25 14:29:30 +100062 OPT_PROV_OPTIONS,
63
Rich Salz92de4692019-09-19 21:33:17 -040064 OPT_PARAMETERS(),
65 {"uri", 0, 0, "URI of the store object"},
Richard Levittec403a1d2016-11-19 19:38:23 +010066 {NULL}
67};
68
69int storeutl_main(int argc, char *argv[])
70{
Richard Levittefb43ddc2017-09-04 15:42:01 +020071 int ret = 1, noout = 0, text = 0, recursive = 0;
Richard Levittec403a1d2016-11-19 19:38:23 +010072 char *outfile = NULL, *passin = NULL, *passinarg = NULL;
73 BIO *out = NULL;
74 ENGINE *e = NULL;
75 OPTION_CHOICE o;
76 char *prog = opt_init(argc, argv, storeutl_options);
77 PW_CB_DATA pw_cb_data;
Richard Levitte9511d972017-02-11 03:20:45 +010078 int expected = 0;
Richard Levitte511e4e02017-02-20 02:47:56 +010079 int criterion = 0;
80 X509_NAME *subject = NULL, *issuer = NULL;
81 ASN1_INTEGER *serial = NULL;
82 unsigned char *fingerprint = NULL;
83 size_t fingerprintlen = 0;
84 char *alias = NULL;
85 OSSL_STORE_SEARCH *search = NULL;
86 const EVP_MD *digest = NULL;
Dr. Matthias St. Pierreb4250012020-10-15 12:55:50 +030087 OSSL_LIB_CTX *libctx = app_get0_libctx();
Shane Lontis67256822020-07-24 22:53:27 +100088 const char *propq = app_get0_propq();
Richard Levittec403a1d2016-11-19 19:38:23 +010089
90 while ((o = opt_next()) != OPT_EOF) {
91 switch (o) {
92 case OPT_EOF:
93 case OPT_ERR:
94 opthelp:
95 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
96 goto end;
97 case OPT_HELP:
98 opt_help(storeutl_options);
99 ret = 0;
100 goto end;
101 case OPT_OUT:
102 outfile = opt_arg();
103 break;
104 case OPT_PASSIN:
105 passinarg = opt_arg();
106 break;
107 case OPT_NOOUT:
108 noout = 1;
109 break;
110 case OPT_TEXT:
111 text = 1;
112 break;
Richard Levittefb43ddc2017-09-04 15:42:01 +0200113 case OPT_RECURSIVE:
114 recursive = 1;
115 break;
Richard Levitte9511d972017-02-11 03:20:45 +0100116 case OPT_SEARCHFOR_CERTS:
117 case OPT_SEARCHFOR_KEYS:
118 case OPT_SEARCHFOR_CRLS:
119 if (expected != 0) {
120 BIO_printf(bio_err, "%s: only one search type can be given.\n",
121 prog);
122 goto end;
123 }
124 {
125 static const struct {
126 enum OPTION_choice choice;
127 int type;
128 } map[] = {
129 {OPT_SEARCHFOR_CERTS, OSSL_STORE_INFO_CERT},
130 {OPT_SEARCHFOR_KEYS, OSSL_STORE_INFO_PKEY},
131 {OPT_SEARCHFOR_CRLS, OSSL_STORE_INFO_CRL},
132 };
133 size_t i;
134
135 for (i = 0; i < OSSL_NELEM(map); i++) {
136 if (o == map[i].choice) {
137 expected = map[i].type;
138 break;
139 }
140 }
141 /*
142 * If expected wasn't set at this point, it means the map
Antoine CÅ“urc2969ff2019-07-02 16:04:04 +0800143 * isn't synchronised with the possible options leading here.
Richard Levitte9511d972017-02-11 03:20:45 +0100144 */
145 OPENSSL_assert(expected != 0);
146 }
147 break;
Richard Levitte511e4e02017-02-20 02:47:56 +0100148 case OPT_CRITERION_SUBJECT:
149 if (criterion != 0) {
150 BIO_printf(bio_err, "%s: criterion already given.\n",
151 prog);
152 goto end;
153 }
154 criterion = OSSL_STORE_SEARCH_BY_NAME;
155 if (subject != NULL) {
156 BIO_printf(bio_err, "%s: subject already given.\n",
157 prog);
158 goto end;
159 }
Dr. David von Oheimb57c05c52020-06-27 10:28:45 +0200160 subject = parse_name(opt_arg(), MBSTRING_UTF8, 1, "subject");
161 if (subject == NULL)
Richard Levitte511e4e02017-02-20 02:47:56 +0100162 goto end;
Richard Levitte511e4e02017-02-20 02:47:56 +0100163 break;
164 case OPT_CRITERION_ISSUER:
165 if (criterion != 0
166 || (criterion == OSSL_STORE_SEARCH_BY_ISSUER_SERIAL
167 && issuer != NULL)) {
168 BIO_printf(bio_err, "%s: criterion already given.\n",
169 prog);
170 goto end;
171 }
172 criterion = OSSL_STORE_SEARCH_BY_ISSUER_SERIAL;
173 if (issuer != NULL) {
174 BIO_printf(bio_err, "%s: issuer already given.\n",
175 prog);
176 goto end;
177 }
Dr. David von Oheimb57c05c52020-06-27 10:28:45 +0200178 issuer = parse_name(opt_arg(), MBSTRING_UTF8, 1, "issuer");
179 if (issuer == NULL)
Richard Levitte511e4e02017-02-20 02:47:56 +0100180 goto end;
Richard Levitte511e4e02017-02-20 02:47:56 +0100181 break;
182 case OPT_CRITERION_SERIAL:
183 if (criterion != 0
184 || (criterion == OSSL_STORE_SEARCH_BY_ISSUER_SERIAL
185 && serial != NULL)) {
186 BIO_printf(bio_err, "%s: criterion already given.\n",
187 prog);
188 goto end;
189 }
190 criterion = OSSL_STORE_SEARCH_BY_ISSUER_SERIAL;
191 if (serial != NULL) {
192 BIO_printf(bio_err, "%s: serial number already given.\n",
193 prog);
194 goto end;
195 }
196 if ((serial = s2i_ASN1_INTEGER(NULL, opt_arg())) == NULL) {
197 BIO_printf(bio_err, "%s: can't parse serial number argument.\n",
198 prog);
199 goto end;
200 }
201 break;
202 case OPT_CRITERION_FINGERPRINT:
203 if (criterion != 0
204 || (criterion == OSSL_STORE_SEARCH_BY_KEY_FINGERPRINT
205 && fingerprint != NULL)) {
206 BIO_printf(bio_err, "%s: criterion already given.\n",
207 prog);
208 goto end;
209 }
210 criterion = OSSL_STORE_SEARCH_BY_KEY_FINGERPRINT;
211 if (fingerprint != NULL) {
212 BIO_printf(bio_err, "%s: fingerprint already given.\n",
213 prog);
214 goto end;
215 }
216 {
217 long tmplen = 0;
218
219 if ((fingerprint = OPENSSL_hexstr2buf(opt_arg(), &tmplen))
220 == NULL) {
221 BIO_printf(bio_err,
222 "%s: can't parse fingerprint argument.\n",
223 prog);
224 goto end;
225 }
226 fingerprintlen = (size_t)tmplen;
227 }
228 break;
229 case OPT_CRITERION_ALIAS:
230 if (criterion != 0) {
231 BIO_printf(bio_err, "%s: criterion already given.\n",
232 prog);
233 goto end;
234 }
235 criterion = OSSL_STORE_SEARCH_BY_ALIAS;
236 if (alias != NULL) {
237 BIO_printf(bio_err, "%s: alias already given.\n",
238 prog);
239 goto end;
240 }
241 if ((alias = OPENSSL_strdup(opt_arg())) == NULL) {
242 BIO_printf(bio_err, "%s: can't parse alias argument.\n",
243 prog);
244 goto end;
245 }
246 break;
Richard Levittec403a1d2016-11-19 19:38:23 +0100247 case OPT_ENGINE:
248 e = setup_engine(opt_arg(), 0);
249 break;
Richard Levitte511e4e02017-02-20 02:47:56 +0100250 case OPT_MD:
251 if (!opt_md(opt_unknown(), &digest))
252 goto opthelp;
Pauli6bd4e3f2020-02-25 14:29:30 +1000253 case OPT_PROV_CASES:
254 if (!opt_provider(o))
255 goto end;
256 break;
Richard Levittec403a1d2016-11-19 19:38:23 +0100257 }
258 }
Rich Salz021410e2020-11-28 16:12:58 -0500259
260 /* One argument, the URI */
Richard Levittec403a1d2016-11-19 19:38:23 +0100261 argc = opt_num_rest();
262 argv = opt_rest();
Rich Salz021410e2020-11-28 16:12:58 -0500263 if (argc != 1)
Richard Levittec403a1d2016-11-19 19:38:23 +0100264 goto opthelp;
Richard Levittec403a1d2016-11-19 19:38:23 +0100265
Richard Levitte511e4e02017-02-20 02:47:56 +0100266 if (criterion != 0) {
267 switch (criterion) {
268 case OSSL_STORE_SEARCH_BY_NAME:
269 if ((search = OSSL_STORE_SEARCH_by_name(subject)) == NULL) {
270 ERR_print_errors(bio_err);
271 goto end;
272 }
273 break;
274 case OSSL_STORE_SEARCH_BY_ISSUER_SERIAL:
275 if (issuer == NULL || serial == NULL) {
276 BIO_printf(bio_err,
277 "%s: both -issuer and -serial must be given.\n",
278 prog);
279 goto end;
280 }
281 if ((search = OSSL_STORE_SEARCH_by_issuer_serial(issuer, serial))
282 == NULL) {
283 ERR_print_errors(bio_err);
284 goto end;
285 }
286 break;
287 case OSSL_STORE_SEARCH_BY_KEY_FINGERPRINT:
288 if ((search = OSSL_STORE_SEARCH_by_key_fingerprint(digest,
289 fingerprint,
290 fingerprintlen))
291 == NULL) {
292 ERR_print_errors(bio_err);
293 goto end;
294 }
295 break;
296 case OSSL_STORE_SEARCH_BY_ALIAS:
297 if ((search = OSSL_STORE_SEARCH_by_alias(alias)) == NULL) {
298 ERR_print_errors(bio_err);
299 goto end;
300 }
301 break;
302 }
303 }
304
Richard Levittec403a1d2016-11-19 19:38:23 +0100305 if (!app_passwd(passinarg, NULL, &passin, NULL)) {
306 BIO_printf(bio_err, "Error getting passwords\n");
307 goto end;
308 }
309 pw_cb_data.password = passin;
310 pw_cb_data.prompt_info = argv[0];
311
312 out = bio_open_default(outfile, 'w', FORMAT_TEXT);
313 if (out == NULL)
314 goto end;
315
Richard Levitte9511d972017-02-11 03:20:45 +0100316 ret = process(argv[0], get_ui_method(), &pw_cb_data,
Richard Levitte511e4e02017-02-20 02:47:56 +0100317 expected, criterion, search,
Shane Lontis67256822020-07-24 22:53:27 +1000318 text, noout, recursive, 0, out, prog, libctx, propq);
Richard Levittefb43ddc2017-09-04 15:42:01 +0200319
320 end:
Matt Caswell28c73b32018-05-29 16:01:30 +0100321 OPENSSL_free(fingerprint);
Richard Levitte511e4e02017-02-20 02:47:56 +0100322 OPENSSL_free(alias);
323 ASN1_INTEGER_free(serial);
324 X509_NAME_free(subject);
325 X509_NAME_free(issuer);
326 OSSL_STORE_SEARCH_free(search);
Richard Levittefb43ddc2017-09-04 15:42:01 +0200327 BIO_free_all(out);
328 OPENSSL_free(passin);
329 release_engine(e);
330 return ret;
331}
332
333static int indent_printf(int indent, BIO *bio, const char *format, ...)
334{
335 va_list args;
336 int ret;
337
338 va_start(args, format);
339
340 ret = BIO_printf(bio, "%*s", indent, "") + BIO_vprintf(bio, format, args);
341
342 va_end(args);
343 return ret;
344}
345
346static int process(const char *uri, const UI_METHOD *uimeth, PW_CB_DATA *uidata,
Richard Levitte511e4e02017-02-20 02:47:56 +0100347 int expected, int criterion, OSSL_STORE_SEARCH *search,
348 int text, int noout, int recursive, int indent, BIO *out,
Dr. Matthias St. Pierreb4250012020-10-15 12:55:50 +0300349 const char *prog, OSSL_LIB_CTX *libctx, const char *propq)
Richard Levittefb43ddc2017-09-04 15:42:01 +0200350{
351 OSSL_STORE_CTX *store_ctx = NULL;
352 int ret = 1, items = 0;
353
Matt Caswelld8652be2020-09-24 10:42:23 +0100354 if ((store_ctx = OSSL_STORE_open_ex(uri, libctx, propq, uimeth, uidata,
355 NULL, NULL))
Richard Levittefb43ddc2017-09-04 15:42:01 +0200356 == NULL) {
357 BIO_printf(bio_err, "Couldn't open file or uri %s\n", uri);
Richard Levittec403a1d2016-11-19 19:38:23 +0100358 ERR_print_errors(bio_err);
Richard Levittefb43ddc2017-09-04 15:42:01 +0200359 return ret;
Richard Levittec403a1d2016-11-19 19:38:23 +0100360 }
361
Richard Levitte9511d972017-02-11 03:20:45 +0100362 if (expected != 0) {
363 if (!OSSL_STORE_expect(store_ctx, expected)) {
364 ERR_print_errors(bio_err);
365 goto end2;
366 }
367 }
368
Richard Levitte511e4e02017-02-20 02:47:56 +0100369 if (criterion != 0) {
370 if (!OSSL_STORE_supports_search(store_ctx, criterion)) {
371 BIO_printf(bio_err,
372 "%s: the store scheme doesn't support the given search criteria.\n",
373 prog);
374 goto end2;
375 }
376
377 if (!OSSL_STORE_find(store_ctx, search)) {
378 ERR_print_errors(bio_err);
379 goto end2;
380 }
381 }
382
Richard Levittec403a1d2016-11-19 19:38:23 +0100383 /* From here on, we count errors, and we'll return the count at the end */
384 ret = 0;
385
386 for (;;) {
387 OSSL_STORE_INFO *info = OSSL_STORE_load(store_ctx);
388 int type = info == NULL ? 0 : OSSL_STORE_INFO_get_type(info);
389 const char *infostr =
390 info == NULL ? NULL : OSSL_STORE_INFO_type_string(type);
391
392 if (info == NULL) {
Richard Levittec403a1d2016-11-19 19:38:23 +0100393 if (OSSL_STORE_error(store_ctx)) {
Richard Levittefb43ddc2017-09-04 15:42:01 +0200394 if (recursive)
395 ERR_clear_error();
396 else
397 ERR_print_errors(bio_err);
Dr. David von Oheimb0c2c5602020-05-11 15:50:36 +0200398 if (OSSL_STORE_eof(store_ctx))
399 break;
Richard Levittec403a1d2016-11-19 19:38:23 +0100400 ret++;
Richard Levitte6fc1d332017-06-27 23:08:54 +0200401 continue;
Richard Levittec403a1d2016-11-19 19:38:23 +0100402 }
403
Dr. David von Oheimb0c2c5602020-05-11 15:50:36 +0200404 if (OSSL_STORE_eof(store_ctx))
405 break;
406
Richard Levittec403a1d2016-11-19 19:38:23 +0100407 BIO_printf(bio_err,
408 "ERROR: OSSL_STORE_load() returned NULL without "
409 "eof or error indications\n");
410 BIO_printf(bio_err, " This is an error in the loader\n");
411 ERR_print_errors(bio_err);
412 ret++;
413 break;
414 }
415
416 if (type == OSSL_STORE_INFO_NAME) {
417 const char *name = OSSL_STORE_INFO_get0_NAME(info);
418 const char *desc = OSSL_STORE_INFO_get0_NAME_description(info);
Richard Levittefb43ddc2017-09-04 15:42:01 +0200419 indent_printf(indent, bio_out, "%d: %s: %s\n", items, infostr,
420 name);
Richard Levittec403a1d2016-11-19 19:38:23 +0100421 if (desc != NULL)
Richard Levittefb43ddc2017-09-04 15:42:01 +0200422 indent_printf(indent, bio_out, "%s\n", desc);
Richard Levittec403a1d2016-11-19 19:38:23 +0100423 } else {
Richard Levittefb43ddc2017-09-04 15:42:01 +0200424 indent_printf(indent, bio_out, "%d: %s\n", items, infostr);
Richard Levittec403a1d2016-11-19 19:38:23 +0100425 }
426
427 /*
428 * Unfortunately, PEM_X509_INFO_write_bio() is sorely lacking in
429 * functionality, so we must figure out how exactly to write things
430 * ourselves...
431 */
432 switch (type) {
433 case OSSL_STORE_INFO_NAME:
Richard Levittefb43ddc2017-09-04 15:42:01 +0200434 if (recursive) {
435 const char *suburi = OSSL_STORE_INFO_get0_NAME(info);
Richard Levitte9511d972017-02-11 03:20:45 +0100436 ret += process(suburi, uimeth, uidata,
Richard Levitte511e4e02017-02-20 02:47:56 +0100437 expected, criterion, search,
Shane Lontis67256822020-07-24 22:53:27 +1000438 text, noout, recursive, indent + 2, out, prog,
439 libctx, propq);
Richard Levittefb43ddc2017-09-04 15:42:01 +0200440 }
Richard Levittec403a1d2016-11-19 19:38:23 +0100441 break;
442 case OSSL_STORE_INFO_PARAMS:
443 if (text)
444 EVP_PKEY_print_params(out, OSSL_STORE_INFO_get0_PARAMS(info),
445 0, NULL);
446 if (!noout)
447 PEM_write_bio_Parameters(out,
448 OSSL_STORE_INFO_get0_PARAMS(info));
449 break;
Richard Levitte2274d222020-07-30 10:09:43 +0200450 case OSSL_STORE_INFO_PUBKEY:
451 if (text)
452 EVP_PKEY_print_public(out, OSSL_STORE_INFO_get0_PUBKEY(info),
453 0, NULL);
454 if (!noout)
455 PEM_write_bio_PUBKEY(out, OSSL_STORE_INFO_get0_PUBKEY(info));
456 break;
Richard Levittec403a1d2016-11-19 19:38:23 +0100457 case OSSL_STORE_INFO_PKEY:
458 if (text)
459 EVP_PKEY_print_private(out, OSSL_STORE_INFO_get0_PKEY(info),
460 0, NULL);
461 if (!noout)
462 PEM_write_bio_PrivateKey(out, OSSL_STORE_INFO_get0_PKEY(info),
463 NULL, NULL, 0, NULL, NULL);
464 break;
465 case OSSL_STORE_INFO_CERT:
466 if (text)
467 X509_print(out, OSSL_STORE_INFO_get0_CERT(info));
468 if (!noout)
469 PEM_write_bio_X509(out, OSSL_STORE_INFO_get0_CERT(info));
470 break;
471 case OSSL_STORE_INFO_CRL:
472 if (text)
473 X509_CRL_print(out, OSSL_STORE_INFO_get0_CRL(info));
474 if (!noout)
475 PEM_write_bio_X509_CRL(out, OSSL_STORE_INFO_get0_CRL(info));
476 break;
477 default:
478 BIO_printf(bio_err, "!!! Unknown code\n");
479 ret++;
480 break;
481 }
482 items++;
483 OSSL_STORE_INFO_free(info);
484 }
Richard Levittefb43ddc2017-09-04 15:42:01 +0200485 indent_printf(indent, out, "Total found: %d\n", items);
Richard Levittec403a1d2016-11-19 19:38:23 +0100486
Richard Levitte9511d972017-02-11 03:20:45 +0100487 end2:
Richard Levittec403a1d2016-11-19 19:38:23 +0100488 if (!OSSL_STORE_close(store_ctx)) {
489 ERR_print_errors(bio_err);
490 ret++;
Richard Levittec403a1d2016-11-19 19:38:23 +0100491 }
492
Richard Levittec403a1d2016-11-19 19:38:23 +0100493 return ret;
494}