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