CTLOG_new.pod 1.1 KB
Newer Older
R
Rob Percival 已提交
1 2 3 4
=pod

=head1 NAME

5 6 7
CTLOG_new, CTLOG_new_null, CTLOG_new_from_base64, CTLOG_free,
CTLOG_get0_name, CTLOG_get0_log_id, CTLOG_get0_public_key -
encapsulates information about a Certificate Transparency log
R
Rob Percival 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

=head1 SYNOPSIS

 #include <openssl/ct.h>

 CTLOG *CTLOG_new(EVP_PKEY *public_key, const char *name);
 CTLOG *CTLOG_new_null(void);
 int CTLOG_new_from_base64(CTLOG ** ct_log,
                           const char *pkey_base64, const char *name);
 void CTLOG_free(CTLOG *log);
 const char *CTLOG_get0_name(const CTLOG *log);
 void CTLOG_get0_log_id(const CTLOG *log, const uint8_t **log_id,
                       size_t *log_id_len);
 EVP_PKEY *CTLOG_get0_public_key(const CTLOG *log);

=head1 DESCRIPTION



=head1 NOTES



=head1 RETURN VALUES



=head1 SEE ALSO

L<ct(3)>

R
Rob Percival 已提交
39 40 41 42
=head1 HISTORY

These functions were added in OpenSSL 1.1.0.

R
Rob Percival 已提交
43 44 45 46 47 48 49 50 51
=head1 COPYRIGHT

Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.

Licensed under the OpenSSL license (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>.

R
Rob Percival 已提交
52
=cut