From de375f74676f97411621778657931f75b21ffcc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Mon, 25 Jun 2007 18:26:06 +0000 Subject: [PATCH] PEM struct/function declarations. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@21310 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/hx509/hx509.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/hx509/hx509.h b/lib/hx509/hx509.h index a286bbba4..1d6139a13 100644 --- a/lib/hx509/hx509.h +++ b/lib/hx509/hx509.h @@ -84,6 +84,16 @@ typedef struct hx509_octet_string_list { heim_octet_string *val; } hx509_octet_string_list; +typedef struct hx509_pem_header { + struct hx509_pem_header *next; + char *header; + char *value; +} hx509_pem_header; + +typedef int +(*hx509_pem_read_func)(hx509_context, const char *, const hx509_pem_header *, + const void *, size_t, void *ctx); + /* * Options passed to hx509_query_match_option. */