summaryrefslogtreecommitdiffstats
path: root/src/PolarSSL++/CryptoKey.cpp
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/PolarSSL++/CryptoKey.cpp
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 'src/PolarSSL++/CryptoKey.cpp')
-rw-r--r--src/PolarSSL++/CryptoKey.cpp149
1 files changed, 0 insertions, 149 deletions
diff --git a/src/PolarSSL++/CryptoKey.cpp b/src/PolarSSL++/CryptoKey.cpp
deleted file mode 100644
index b01fee5f9..000000000
--- a/src/PolarSSL++/CryptoKey.cpp
+++ /dev/null
@@ -1,149 +0,0 @@
-
-// CryptoKey.cpp
-
-// Implements the cCryptoKey class representing a RSA public key in PolarSSL
-
-#include "Globals.h"
-#include "CryptoKey.h"
-
-
-
-
-
-cCryptoKey::cCryptoKey(void)
-{
- pk_init(&m_Pk);
- m_CtrDrbg.Initialize("rsa_pubkey", 10);
-}
-
-
-
-
-
-cCryptoKey::cCryptoKey(const AString & a_PublicKeyData)
-{
- pk_init(&m_Pk);
- m_CtrDrbg.Initialize("rsa_pubkey", 10);
- int res = ParsePublic(a_PublicKeyData.data(), a_PublicKeyData.size());
- if (res != 0)
- {
- LOGWARNING("Failed to parse public key: -0x%x", res);
- ASSERT(!"Cannot parse PubKey");
- return;
- }
-}
-
-
-
-
-
-cCryptoKey::cCryptoKey(const AString & a_PrivateKeyData, const AString & a_Password)
-{
- pk_init(&m_Pk);
- m_CtrDrbg.Initialize("rsa_privkey", 11);
- int res = ParsePrivate(a_PrivateKeyData.data(), a_PrivateKeyData.size(), a_Password);
- if (res != 0)
- {
- LOGWARNING("Failed to parse private key: -0x%x", res);
- ASSERT(!"Cannot parse PrivKey");
- return;
- }
-}
-
-
-
-
-
-cCryptoKey::~cCryptoKey()
-{
- pk_free(&m_Pk);
-}
-
-
-
-
-
-int cCryptoKey::Decrypt(const Byte * a_EncryptedData, size_t a_EncryptedLength, Byte * a_DecryptedData, size_t a_DecryptedMaxLength)
-{
- ASSERT(IsValid());
-
- size_t DecryptedLen = a_DecryptedMaxLength;
- int res = pk_decrypt(&m_Pk,
- a_EncryptedData, a_EncryptedLength,
- a_DecryptedData, &DecryptedLen, a_DecryptedMaxLength,
- ctr_drbg_random, m_CtrDrbg.GetInternal()
- );
- if (res != 0)
- {
- return res;
- }
- return static_cast<int>(DecryptedLen);
-}
-
-
-
-
-
-int cCryptoKey::Encrypt(const Byte * a_PlainData, size_t a_PlainLength, Byte * a_EncryptedData, size_t a_EncryptedMaxLength)
-{
- ASSERT(IsValid());
-
- size_t EncryptedLength = a_EncryptedMaxLength;
- int res = pk_encrypt(&m_Pk,
- a_PlainData, a_PlainLength, a_EncryptedData, &EncryptedLength, a_EncryptedMaxLength,
- ctr_drbg_random, m_CtrDrbg.GetInternal()
- );
- if (res != 0)
- {
- return res;
- }
- return static_cast<int>(EncryptedLength);
-}
-
-
-
-
-
-
-int cCryptoKey::ParsePublic(const void * a_Data, size_t a_NumBytes)
-{
- ASSERT(!IsValid()); // Cannot parse a second key
-
- return pk_parse_public_key(&m_Pk, reinterpret_cast<const unsigned char *>(a_Data), a_NumBytes);
-}
-
-
-
-
-
-
-int cCryptoKey::ParsePrivate(const void * a_Data, size_t a_NumBytes, const AString & a_Password)
-{
- ASSERT(!IsValid()); // Cannot parse a second key
-
- if (a_Password.empty())
- {
- return pk_parse_key(&m_Pk, reinterpret_cast<const unsigned char *>(a_Data), a_NumBytes, nullptr, 0);
- }
- else
- {
- return pk_parse_key(
- &m_Pk,
- reinterpret_cast<const unsigned char *>(a_Data), a_NumBytes,
- reinterpret_cast<const unsigned char *>(a_Password.c_str()), a_Password.size()
- );
- }
-}
-
-
-
-
-
-bool cCryptoKey::IsValid(void) const
-{
- return (pk_get_type(&m_Pk) != POLARSSL_PK_NONE);
-}
-
-
-
-