diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libressl/ressl.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/libressl/ressl.h b/src/lib/libressl/ressl.h index 9795c3804b..90b51dc7fc 100644 --- a/src/lib/libressl/ressl.h +++ b/src/lib/libressl/ressl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ressl.h,v 1.15 2014/09/28 14:46:09 jsing Exp $ */ | 1 | /* $OpenBSD: ressl.h,v 1.16 2014/09/28 15:08:01 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> |
4 | * | 4 | * |
@@ -33,12 +33,14 @@ void ressl_config_free(struct ressl_config *config); | |||
33 | 33 | ||
34 | int ressl_config_set_ca_file(struct ressl_config *config, const char *ca_file); | 34 | int ressl_config_set_ca_file(struct ressl_config *config, const char *ca_file); |
35 | int ressl_config_set_ca_path(struct ressl_config *config, const char *ca_path); | 35 | int ressl_config_set_ca_path(struct ressl_config *config, const char *ca_path); |
36 | int ressl_config_set_cert_file(struct ressl_config *config, const char *cert_file); | 36 | int ressl_config_set_cert_file(struct ressl_config *config, |
37 | const char *cert_file); | ||
37 | int ressl_config_set_cert_mem(struct ressl_config *config, const uint8_t *cert, | 38 | int ressl_config_set_cert_mem(struct ressl_config *config, const uint8_t *cert, |
38 | size_t len); | 39 | size_t len); |
39 | int ressl_config_set_ciphers(struct ressl_config *config, const char *ciphers); | 40 | int ressl_config_set_ciphers(struct ressl_config *config, const char *ciphers); |
40 | int ressl_config_set_ecdhcurve(struct ressl_config *config, const char *); | 41 | int ressl_config_set_ecdhcurve(struct ressl_config *config, const char *name); |
41 | int ressl_config_set_key_file(struct ressl_config *config, const char *key_file); | 42 | int ressl_config_set_key_file(struct ressl_config *config, |
43 | const char *key_file); | ||
42 | int ressl_config_set_key_mem(struct ressl_config *config, const uint8_t *key, | 44 | int ressl_config_set_key_mem(struct ressl_config *config, const uint8_t *key, |
43 | size_t len); | 45 | size_t len); |
44 | void ressl_config_set_verify_depth(struct ressl_config *config, | 46 | void ressl_config_set_verify_depth(struct ressl_config *config, |