summaryrefslogtreecommitdiff
path: root/src/lib/libressl/ressl_internal.h
diff options
context:
space:
mode:
authorjsing <>2014-08-04 15:58:29 +0000
committerjsing <>2014-08-04 15:58:29 +0000
commit78f1b94786e7a88c2465b014db9000aae8825054 (patch)
treedc58ebd660bd30d885b18d92e575e57dfabdc2d5 /src/lib/libressl/ressl_internal.h
parent5ba06d1e6f1d7f0d7316856cdf4b22225fa45513 (diff)
downloadopenbsd-78f1b94786e7a88c2465b014db9000aae8825054.tar.gz
openbsd-78f1b94786e7a88c2465b014db9000aae8825054.tar.bz2
openbsd-78f1b94786e7a88c2465b014db9000aae8825054.zip
Provide a utility function for loading a private/public keypair.
Diffstat (limited to 'src/lib/libressl/ressl_internal.h')
-rw-r--r--src/lib/libressl/ressl_internal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/libressl/ressl_internal.h b/src/lib/libressl/ressl_internal.h
index c33d4cff2e..0b6a58bf2d 100644
--- a/src/lib/libressl/ressl_internal.h
+++ b/src/lib/libressl/ressl_internal.h
@@ -53,6 +53,7 @@ struct ressl {
53struct ressl *ressl_new(void); 53struct ressl *ressl_new(void);
54 54
55int ressl_check_hostname(X509 *cert, const char *host); 55int ressl_check_hostname(X509 *cert, const char *host);
56int ressl_configure_keypair(struct ressl *ctx);
56int ressl_host_port(const char *hostport, char **host, char **port); 57int ressl_host_port(const char *hostport, char **host, char **port);
57int ressl_set_error(struct ressl *ctx, char *fmt, ...); 58int ressl_set_error(struct ressl *ctx, char *fmt, ...);
58 59