-*- mode: troff; coding: utf-8 -*-
Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43)
Standard preamble:
========================================================================
..
.... \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>.
. ds C` "" . ds C' "" 'br\} . ds C` . ds C' 'br\}
Escape single quotes in literal strings from groff's Unicode transform.
If the F register is >0, we'll generate index entries on stderr for
titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
entries marked with X<> in POD. Of course, you'll have to process the
output yourself in some meaningful fashion.
Avoid warning from groff about undefined register 'F'.
.. .nr rF 0 . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF ========================================================================
Title "OSSL_DECODER_from_bio 3"
way too many mistakes in technical documents.
Feature availability macros:
\fBOSSL_DECODER_from_bio() runs the decoding process for the context ctx, with the input coming from the BIO in. Should it make a difference, it's recommended to have the BIO set in binary mode rather than text mode.
\fBOSSL_DECODER_from_fp() does the same thing as OSSL_DECODER_from_bio(), except that the input is coming from the FILE fp.
.Vb 6 OSSL_DECODER_CTX *dctx; EVP_PKEY *pkey = NULL; const char *format = "PEM"; /* NULL for any format */ const char *structure = NULL; /* any structure */ const char *keytype = "RSA"; /* NULL for any key */ const unsigned char *pass = "my password"; \& dctx = OSSL_DECODER_CTX_new_for_pkey(&pkey, format, structure, keytype, OSSL_KEYMGMT_SELECT_KEYPAIR, NULL, NULL); if (dctx == NULL) { /* error: no suitable potential decoders found */ } if (pass != NULL) OSSL_DECODER_CTX_set_passphrase(dctx, pass, strlen(pass)); if (OSSL_DECODER_from_bio(dctx, bio)) { /* pkey is created with the decoded data from the bio */ } else { /* decoding failure */ } OSSL_DECODER_CTX_free(dctx); .Ve
To decode an EC key encoded with DER from a buffer:
.Vb 8 OSSL_DECODER_CTX *dctx; EVP_PKEY *pkey = NULL; const char *format = "DER"; /* NULL for any format */ const char *structure = NULL; /* any structure */ const char *keytype = "EC"; /* NULL for any key */ const unsigned char *pass = NULL const unsigned char *data = buffer; size_t datalen = sizeof(buffer); \& dctx = OSSL_DECODER_CTX_new_for_pkey(&pkey, format, structure, keytype, OSSL_KEYMGMT_SELECT_KEYPAIR | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS, NULL, NULL); if (dctx == NULL) { /* error: no suitable potential decoders found */ } if (pass != NULL) OSSL_DECODER_CTX_set_passphrase(dctx, pass, strlen(pass)); if (OSSL_DECODER_from_data(dctx, &data, &datalen)) { /* pkey is created with the decoded data from the buffer */ } else { /* decoding failure */ } OSSL_DECODER_CTX_free(dctx); .Ve
Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at <https://www.openssl.org/source/license.html>.