openvpn: fix interface with mbedtls_sha256
Between mbedtls 2.6.0 and 2.7.0, the void returning mbedtls_MODULE* functions were deprecated in favor of functions returning an int error code. Use the new function mbedtls_sha256_ret(). Signed-off-by: Russell Senior <russell@personaltelco.net> Tested-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
This commit is contained in:
parent
e05a6018fc
commit
42b94a74e9
1 changed files with 11 additions and 0 deletions
|
@ -0,0 +1,11 @@
|
|||
--- a/src/openvpn/ssl_mbedtls.c
|
||||
+++ b/src/openvpn/ssl_mbedtls.c
|
||||
@@ -803,7 +803,7 @@ tls_ctx_personalise_random(struct tls_ro
|
||||
{
|
||||
mbedtls_x509_crt *cert = ctx->crt_chain;
|
||||
|
||||
- mbedtls_sha256(cert->tbs.p, cert->tbs.len, sha256_hash, false);
|
||||
+ mbedtls_sha256_ret(cert->tbs.p, cert->tbs.len, sha256_hash, false);
|
||||
if (0 != memcmp(old_sha256_hash, sha256_hash, sizeof(sha256_hash)))
|
||||
{
|
||||
mbedtls_ctr_drbg_update(cd_ctx, sha256_hash, 32);
|
Loading…
Reference in a new issue