Adds missing function names to NAME section of PODs
[openssl.git] / doc / crypto / CTLOG_new.pod
1 =pod
2
3 =head1 NAME
4
5 CTLOG_new, CTLOG_new_null, CTLOG_new_from_base64, CTLOG_free,
6 CTLOG_get0_name, CTLOG_get0_log_id, CTLOG_get0_public_key -
7 encapsulates information about a Certificate Transparency log
8
9 =head1 SYNOPSIS
10
11  #include <openssl/ct.h>
12
13  CTLOG *CTLOG_new(EVP_PKEY *public_key, const char *name);
14  CTLOG *CTLOG_new_null(void);
15  int CTLOG_new_from_base64(CTLOG ** ct_log,
16                            const char *pkey_base64, const char *name);
17  void CTLOG_free(CTLOG *log);
18  const char *CTLOG_get0_name(const CTLOG *log);
19  void CTLOG_get0_log_id(const CTLOG *log, const uint8_t **log_id,
20                        size_t *log_id_len);
21  EVP_PKEY *CTLOG_get0_public_key(const CTLOG *log);
22
23 =head1 DESCRIPTION
24
25
26
27 =head1 NOTES
28
29
30
31 =head1 RETURN VALUES
32
33
34
35 =head1 SEE ALSO
36
37 L<ct(3)>
38
39 =head1 COPYRIGHT
40
41 Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
42
43 Licensed under the OpenSSL license (the "License").  You may not use
44 this file except in compliance with the License.  You can obtain a copy
45 in the file LICENSE in the source distribution or at
46 L<https://www.openssl.org/source/license.html>.
47
48 =cut