From f83194c2f45bcc736edc8246b510a29c1df15756 Mon Sep 17 00:00:00 2001 From: Simon Zhang Date: Mon, 14 Oct 2019 19:41:51 +0800 Subject: tls: picotls engine basic enabling for TLS Type: feature Change-Id: I700d999771d837604dd0571741f4f0bcbec82403 Signed-off-by: Simon Zhang --- src/plugins/tlspicotls/certs.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/plugins/tlspicotls/certs.h (limited to 'src/plugins/tlspicotls/certs.h') diff --git a/src/plugins/tlspicotls/certs.h b/src/plugins/tlspicotls/certs.h new file mode 100644 index 00000000000..475a84ade32 --- /dev/null +++ b/src/plugins/tlspicotls/certs.h @@ -0,0 +1,31 @@ +#ifndef __included_certs_h__ +#define __included_certs_h__ + +#include +#include + +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: + */ -- cgit 1.2.3-korg