summaryrefslogtreecommitdiffstats
path: root/src/mbedTLS++/RsaPrivateKey.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++/RsaPrivateKey.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++/RsaPrivateKey.h (renamed from src/PolarSSL++/RsaPrivateKey.h)12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/PolarSSL++/RsaPrivateKey.h b/src/mbedTLS++/RsaPrivateKey.h
index 595ba5663..7be0152b7 100644
--- a/src/PolarSSL++/RsaPrivateKey.h
+++ b/src/mbedTLS++/RsaPrivateKey.h
@@ -1,4 +1,4 @@
-
+
// RsaPrivateKey.h
// Declares the cRsaPrivateKey class representing a private key for RSA operations.
@@ -10,7 +10,7 @@
#pragma once
#include "CtrDrbgContext.h"
-#include "polarssl/rsa.h"
+#include "mbedtls/rsa.h"
@@ -48,15 +48,15 @@ public:
int Encrypt(const Byte * a_PlainData, size_t a_PlainLength, Byte * a_EncryptedData, size_t a_EncryptedMaxLength);
protected:
- /** The PolarSSL key context */
- rsa_context m_Rsa;
+ /** The mbedTLS key context */
+ mbedtls_rsa_context m_Rsa;
/** The random generator used for generating the key and encryption / decryption */
cCtrDrbgContext m_CtrDrbg;
- /** Returns the internal context ptr. Only use in PolarSSL API calls. */
- rsa_context * GetInternal(void) { return &m_Rsa; }
+ /** Returns the internal context ptr. Only use in mbedTLS API calls. */
+ mbedtls_rsa_context * GetInternal(void) { return &m_Rsa; }
} ;
typedef std::shared_ptr<cRsaPrivateKey> cRsaPrivateKeyPtr;