Blame doc/man3/o2i_SCT_LIST.pod

Packit c4476c
=pod
Packit c4476c
Packit c4476c
=head1 NAME
Packit c4476c
Packit c4476c
o2i_SCT_LIST, i2o_SCT_LIST, o2i_SCT, i2o_SCT -
Packit c4476c
decode and encode Signed Certificate Timestamp lists in TLS wire format
Packit c4476c
Packit c4476c
=head1 SYNOPSIS
Packit c4476c
Packit c4476c
 #include <openssl/ct.h>
Packit c4476c
Packit c4476c
 STACK_OF(SCT) *o2i_SCT_LIST(STACK_OF(SCT) **a, const unsigned char **pp,
Packit c4476c
                             size_t len);
Packit c4476c
 int i2o_SCT_LIST(const STACK_OF(SCT) *a, unsigned char **pp);
Packit c4476c
 SCT *o2i_SCT(SCT **psct, const unsigned char **in, size_t len);
Packit c4476c
 int i2o_SCT(const SCT *sct, unsigned char **out);
Packit c4476c
Packit c4476c
=head1 DESCRIPTION
Packit c4476c
Packit c4476c
The SCT_LIST and SCT functions are very similar to the i2d and d2i family of
Packit c4476c
functions, except that they convert to and from TLS wire format, as described in
Packit c4476c
RFC 6962. See L<d2i_SCT_LIST> for more information about how the parameters are
Packit c4476c
treated and the return values.
Packit c4476c
Packit c4476c
=head1 RETURN VALUES
Packit c4476c
Packit c4476c
All of the functions have return values consistent with those stated for
Packit c4476c
L<d2i_SCT_LIST> and L<i2d_SCT_LIST>.
Packit c4476c
Packit c4476c
=head1 SEE ALSO
Packit c4476c
Packit c4476c
L<ct(7)>,
Packit c4476c
L<d2i_SCT_LIST(3)>,
Packit c4476c
L<i2d_SCT_LIST(3)>
Packit c4476c
Packit c4476c
=head1 HISTORY
Packit c4476c
Packit c4476c
These functions were added in OpenSSL 1.1.0.
Packit c4476c
Packit c4476c
=head1 COPYRIGHT
Packit c4476c
Packit c4476c
Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
Packit c4476c
Packit c4476c
Licensed under the OpenSSL license (the "License").  You may not use
Packit c4476c
this file except in compliance with the License.  You can obtain a copy
Packit c4476c
in the file LICENSE in the source distribution or at
Packit c4476c
L<https://www.openssl.org/source/license.html>.
Packit c4476c
Packit c4476c
=cut