2019-11-18 08:32:22 +08:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
2020-08-17 03:25:08 +08:00
|
|
|
OSSL_ENCODER_to_bio,
|
|
|
|
OSSL_ENCODER_to_fp
|
2020-09-14 15:20:41 +08:00
|
|
|
- Routines to perform an encoding
|
2019-11-18 08:32:22 +08:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
2020-08-17 03:25:08 +08:00
|
|
|
#include <openssl/encoder.h>
|
2019-11-18 08:32:22 +08:00
|
|
|
|
2020-08-17 03:25:08 +08:00
|
|
|
int OSSL_ENCODER_to_bio(OSSL_ENCODER_CTX *ctx, BIO *out);
|
|
|
|
int OSSL_ENCODER_to_fp(OSSL_ENCODER_CTX *ctx, FILE *fp);
|
2019-11-18 08:32:22 +08:00
|
|
|
|
|
|
|
Feature availability macros:
|
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
2020-08-17 03:25:08 +08:00
|
|
|
=item OSSL_ENCODER_to_fp() is only available when B<OPENSSL_NO_STDIO>
|
2019-11-18 08:32:22 +08:00
|
|
|
is undefined.
|
|
|
|
|
|
|
|
=back
|
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2020-09-14 15:20:41 +08:00
|
|
|
OSSL_ENCODER_to_bio() runs the encoding process for the context I<ctx>, with
|
|
|
|
the output going to the B<BIO> I<out>. The application is required to set
|
|
|
|
up the B<BIO> properly, for example to have it in text or binary mode if
|
|
|
|
that's appropriate.
|
2019-11-18 08:32:22 +08:00
|
|
|
|
2020-08-17 03:25:08 +08:00
|
|
|
=for comment Know your encoder!
|
2019-11-18 08:32:22 +08:00
|
|
|
|
2020-08-17 03:25:08 +08:00
|
|
|
OSSL_ENCODER_to_fp() does the same thing as OSSL_ENCODER_to_bio(),
|
2019-11-18 08:32:22 +08:00
|
|
|
except that the output is going to the B<FILE> I<fp>.
|
|
|
|
|
|
|
|
=head1 RETURN VALUES
|
|
|
|
|
2020-09-14 15:20:41 +08:00
|
|
|
OSSL_ENCODER_to_bio() and OSSL_ENCODER_to_fp() return 1 on success, or 0 on
|
|
|
|
failure.
|
|
|
|
|
|
|
|
=begin comment TODO(3.0) Add examples!
|
|
|
|
|
|
|
|
=head1 EXAMPLES
|
|
|
|
|
|
|
|
Text, because pod2xxx doesn't like empty sections
|
|
|
|
|
|
|
|
=end comment
|
2019-11-18 08:32:22 +08:00
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2020-08-17 03:25:08 +08:00
|
|
|
L<provider(7)>, L<OSSL_ENCODER_CTX(3)>
|
2019-11-18 08:32:22 +08:00
|
|
|
|
|
|
|
=head1 HISTORY
|
|
|
|
|
|
|
|
The functions described here were added in OpenSSL 3.0.
|
|
|
|
|
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
2020-09-14 15:20:41 +08:00
|
|
|
Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2019-11-18 08:32:22 +08:00
|
|
|
|
|
|
|
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
|
|
|
|
L<https://www.openssl.org/source/license.html>.
|
|
|
|
|
|
|
|
=cut
|