summaryrefslogtreecommitdiffstats
path: root/src/mbedTLS++/Sha1Checksum.h
diff options
context:
space:
mode:
authorpeterbell10 <peterbell10@live.co.uk>2017-08-30 16:00:06 +0200
committerTiger Wang <ziwei.tiger@outlook.com>2017-08-30 16:00:06 +0200
commit84941bcc9f25cbe3fd3b2604080d0a1cfd8fbaa7 (patch)
treeaa1648c2ba260b8576673677435481d371eec7b0 /src/mbedTLS++/Sha1Checksum.h
parentUpdate core plugins to latest version (#3951) (diff)
downloadcuberite-84941bcc9f25cbe3fd3b2604080d0a1cfd8fbaa7.tar
cuberite-84941bcc9f25cbe3fd3b2604080d0a1cfd8fbaa7.tar.gz
cuberite-84941bcc9f25cbe3fd3b2604080d0a1cfd8fbaa7.tar.bz2
cuberite-84941bcc9f25cbe3fd3b2604080d0a1cfd8fbaa7.tar.lz
cuberite-84941bcc9f25cbe3fd3b2604080d0a1cfd8fbaa7.tar.xz
cuberite-84941bcc9f25cbe3fd3b2604080d0a1cfd8fbaa7.tar.zst
cuberite-84941bcc9f25cbe3fd3b2604080d0a1cfd8fbaa7.zip
Diffstat (limited to '')
-rw-r--r--src/mbedTLS++/Sha1Checksum.h (renamed from src/PolarSSL++/Sha1Checksum.h)6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/PolarSSL++/Sha1Checksum.h b/src/mbedTLS++/Sha1Checksum.h
index b78fbfc62..43180e531 100644
--- a/src/PolarSSL++/Sha1Checksum.h
+++ b/src/mbedTLS++/Sha1Checksum.h
@@ -1,4 +1,4 @@
-
+
// Sha1Checksum.h
// Declares the cSha1Checksum class representing the SHA-1 checksum calculator
@@ -9,7 +9,7 @@
#pragma once
-#include "polarssl/sha1.h"
+#include "mbedtls/sha1.h"
@@ -44,7 +44,7 @@ protected:
/** True if the object is accepts more input data, false if Finalize()-d (need to Restart()) */
bool m_DoesAcceptInput;
- sha1_context m_Sha1;
+ mbedtls_sha1_context m_Sha1;
} ;