OSSL_ENCODER_TO_BIO - Online Linux Manual PageSection : 3ossl
Updated : 2022-03-15
Source : 3.0.2
Note : OpenSSL

NAMEOSSL_ENCODER_to_data, OSSL_ENCODER_to_bio, OSSL_ENCODER_to_fp ​− Routines to perform an encoding

SYNOPSIS​ #include <openssl/encoder.h> ​ ​ int OSSL_ENCODER_to_data(OSSL_ENCODER_CTX *ctx, unsigned char **pdata, ​ size_t *pdata_len); ​ int OSSL_ENCODER_to_bio(OSSL_ENCODER_CTX *ctx, BIO *out); ​ int OSSL_ENCODER_to_fp(OSSL_ENCODER_CTX *ctx, FILE *fp); Feature availability macros: OSSL_ENCODER_to_fp() is only available when OPENSSL_NO_STDIO is undefined. 

DESCRIPTIONOSSL_ENCODER_to_data() runs the encoding process for the context ctx, with the output going to the *pdata and *pdata_len. If *pdata is NULL when OSSL_ENCODER_to_data() is called, a buffer will be allocated using OPENSSL_zalloc(3), and *pdata will be set to point at the start of that buffer, and *pdata_len will be assigned its length when ​OSSL_ENCODER_to_data() returns. If *pdata is non-NULL when OSSL_ENCODER_to_data() is called, *pdata_len is assumed to have its size. In this case, *pdata will be set to point after the encoded bytes, and *pdata_len will be assigned the number of remaining bytes. OSSL_ENCODER_to_bio() runs the encoding process for the context ctx, with the output going to the BIO out. OSSL_ENCODER_to_fp() does the same thing as OSSL_ENCODER_to_bio(), except that the output is going to the FILE fp. For OSSL_ENCODER_to_bio() and OSSL_ENCODER_to_fp(), the application is required to set up the BIO or FILE properly, for example to have it in text or binary mode as is appropriate for the encoder output type.

RETURN VALUESOSSL_ENCODER_to_bio(), OSSL_ENCODER_to_fp() and OSSL_ENCODER_to_data() return 1 on success, or 0 on failure.

EXAMPLESTo encode a pkey as PKCS#8 with PEM format into a bio: ​ OSSL_ENCODER_CTX *ectx; ​ const char *format = "PEM"; ​ const char *structure = "PrivateKeyInfo"; /* PKCS#8 structure */ ​ const unsigned char *pass = "my password"; ​ ​ ectx = OSSL_ENCODER_CTX_new_for_pkey(pkey, ​ OSSL_KEYMGMT_SELECT_KEYPAIR ​ | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS, ​ format, structure, ​ NULL); ​ if (ectx == NULL) { ​ /* error: no suitable potential encoders found */ ​ } ​ if (pass != NULL) ​ OSSL_ENCODER_CTX_set_passphrase(ectx, pass, strlen(pass)); ​ if (OSSL_ENCODER_to_bio(ectx, bio)) { ​ /* pkey was successfully encoded into the bio */ ​ } else { ​ /* encoding failure */ ​ } ​ OSSL_ENCODER_CTX_free(ectx); To encode a pkey as PKCS#8 with DER format encrypted with ​AES−256−CBC into a buffer: ​ OSSL_ENCODER_CTX *ectx; ​ const char *format = "DER"; ​ const char *structure = "PrivateKeyInfo"; /* PKCS#8 structure */ ​ const unsigned char *pass = "my password"; ​ unsigned char *data = NULL; ​ size_t datalen; ​ ​ ectx = OSSL_ENCODER_CTX_new_for_pkey(pkey, ​ OSSL_KEYMGMT_SELECT_KEYPAIR ​ | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS, ​ format, structure, ​ NULL); ​ if (ectx == NULL) { ​ /* error: no suitable potential encoders found */ ​ } ​ if (pass != NULL) { ​ OSSL_ENCODER_CTX_set_passphrase(ectx, pass, strlen(pass)); ​ OSSL_ENCODER_CTX_set_cipher(ctx, "AES−256−CBC", NULL); ​ } ​ if (OSSL_ENCODER_to_data(ectx, &data, &datalen)) { ​ /* ​ * pkey was successfully encoded into a newly allocated ​ * data buffer ​ */ ​ } else { ​ /* encoding failure */ ​ } ​ OSSL_ENCODER_CTX_free(ectx);

SEE ALSOprovider(7), OSSL_ENCODER_CTX(3)

HISTORYThe functions described here were added in OpenSSL 3.0.

COPYRIGHTCopyright 2019−2021 The OpenSSL Project Authors. All Rights Reserved. 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>.
0
Johanes Gumabo
Data Size   :   14,388 byte
man-OSSL_ENCODER_to_data.3osslBuild   :   2024-12-05, 20:55   :  
Visitor Screen   :   x
Visitor Counter ( page / site )   :   3 / 239,669
Visitor ID   :     :  
Visitor IP   :   18.222.111.44   :  
Visitor Provider   :   AMAZON-02   :  
Provider Position ( lat x lon )   :   39.962500 x -83.006100   :   x
Provider Accuracy Radius ( km )   :   1000   :  
Provider City   :   Columbus   :  
Provider Province   :   Ohio ,   :   ,
Provider Country   :   United States   :  
Provider Continent   :   North America   :  
Visitor Recorder   :   Version   :  
Visitor Recorder   :   Library   :  
Online Linux Manual Page   :   Version   :   Online Linux Manual Page - Fedora.40 - march=x86-64 - mtune=generic - 24.12.05
Online Linux Manual Page   :   Library   :   lib_c - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Online Linux Manual Page   :   Library   :   lib_m - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Data Base   :   Version   :   Online Linux Manual Page Database - 24.04.13 - march=x86-64 - mtune=generic - fedora-38
Data Base   :   Library   :   lib_c - 23.02.07 - march=x86-64 - mtune=generic - fedora.36

Very long time ago, I have the best tutor, Wenzel Svojanovsky . If someone knows the email address of Wenzel Svojanovsky , please send an email to johanes_gumabo@yahoo.co.id .
If error, please print screen and send to johanes_gumabo@yahoo.co.id
Under development. Support me via PayPal.

ERROR : Need New Coding :         (parse_manual_page_|249|O___SSL_ENCODER_to_bio.3ossl|36/37|el══─{─══.|.el══─{─══. ds -- \|\(em\| )         (htmlprn|149|O___SSL_ENCODER_to_bio.3ossl|36/37|.el══─{─══. ds --  —  |.el══─{─══. ds -- \|\(em\| )         (parse_manual_page_|249|O___SSL_ENCODER_to_bio.3ossl|43|br══─}─══|'br══─}─══ )         (htmlprn|149|O___SSL_ENCODER_to_bio.3ossl|43|'br══─}─══ |'br══─}─══ )