summaryrefslogtreecommitdiff
path: root/lib/vtls/polarssl.h
diff options
context:
space:
mode:
authorAlessandro Ghedini <alessandro@ghedini.me>2016-08-03 08:44:40 +0100
committerAlessandro Ghedini <alessandro@ghedini.me>2016-08-03 08:44:40 +0100
commitd0e75a4dd1b5dbadaafeac616c9244d95c0da0d9 (patch)
treeb9cc54b8bd1c220d36790227557a4e980eeda460 /lib/vtls/polarssl.h
parent8651f09f51d271bf2c9defaa33a211a7092642ad (diff)
Imported Upstream version 7.50.1
Diffstat (limited to 'lib/vtls/polarssl.h')
-rw-r--r--lib/vtls/polarssl.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/vtls/polarssl.h b/lib/vtls/polarssl.h
index b10193a3..7098b24a 100644
--- a/lib/vtls/polarssl.h
+++ b/lib/vtls/polarssl.h
@@ -7,12 +7,12 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 2012 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 2012 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
* Copyright (C) 2010, Hoi-Ho Chan, <hoiho.chan@gmail.com>
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
- * are also available at http://curl.haxx.se/docs/copyright.html.
+ * are also available at https://curl.haxx.se/docs/copyright.html.
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
@@ -26,6 +26,8 @@
#ifdef USE_POLARSSL
+#include <polarssl/sha256.h>
+
/* Called on first use PolarSSL, setup threading if supported */
int Curl_polarssl_init(void);
void Curl_polarssl_cleanup(void);
@@ -50,6 +52,9 @@ int Curl_polarssl_shutdown(struct connectdata *conn, int sockindex);
/* this backend supports the CAPATH option */
#define have_curlssl_ca_path 1
+/* this backends supports CURLOPT_PINNEDPUBLICKEY */
+#define have_curlssl_pinnedpubkey 1
+
/* API setup for PolarSSL */
#define curlssl_init() Curl_polarssl_init()
#define curlssl_cleanup() Curl_polarssl_cleanup()
@@ -65,6 +70,7 @@ int Curl_polarssl_shutdown(struct connectdata *conn, int sockindex);
#define curlssl_version Curl_polarssl_version
#define curlssl_check_cxn(x) ((void)x, -1)
#define curlssl_data_pending(x,y) ((void)x, (void)y, 0)
+#define curlssl_sha256sum(a,b,c,d) sha256(a,b,c,0)
/* This might cause libcurl to use a weeker random!
TODO: implement proper use of Polarssl's CTR-DRBG or HMAC-DRBG and use that