blob: 475a84ade3260b5d000bef2e4b6060ae572d9a3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef __included_certs_h__
#define __included_certs_h__
#include <picotls/openssl.h>
#include <picotls/pembase64.h>
int ptls_compare_separator_line (const char *line, const char *begin_or_end,
const char *label);
int ptls_get_bio_pem_object (BIO * bio, const char *label,
ptls_buffer_t * buf);
int ptls_load_bio_pem_objects (BIO * bio, const char *label,
ptls_iovec_t * list, size_t list_max,
size_t * nb_objects);
int ptls_load_bio_certificates (ptls_context_t * ctx, BIO * bio);
int load_bio_certificate_chain (ptls_context_t * ctx, const char *cert_data);
int load_bio_private_key (ptls_context_t * ctx, const char *pk_data);
#endif /* __included_certs_h__ */
/*
* fd.io coding-style-patch-verification: ON
*
* Local Variables:
* eval: (c-set-style "gnu")
* End:
*/
|