diff options
author | madmaxoft <github@xoft.cz> | 2014-04-29 17:13:08 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-04-29 17:13:08 +0200 |
commit | d9f7ae6a4d0895752c1a62657c36433e92104346 (patch) | |
tree | 5f6e13c16f1ae794851514ec2532bebf7ccb0727 /src/Crypto.cpp | |
parent | Merge branch 'master' into SslWrappers (diff) | |
download | cuberite-d9f7ae6a4d0895752c1a62657c36433e92104346.tar cuberite-d9f7ae6a4d0895752c1a62657c36433e92104346.tar.gz cuberite-d9f7ae6a4d0895752c1a62657c36433e92104346.tar.bz2 cuberite-d9f7ae6a4d0895752c1a62657c36433e92104346.tar.lz cuberite-d9f7ae6a4d0895752c1a62657c36433e92104346.tar.xz cuberite-d9f7ae6a4d0895752c1a62657c36433e92104346.tar.zst cuberite-d9f7ae6a4d0895752c1a62657c36433e92104346.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Crypto.cpp | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/src/Crypto.cpp b/src/Crypto.cpp index dd8787293..370b498bf 100644 --- a/src/Crypto.cpp +++ b/src/Crypto.cpp @@ -53,84 +53,6 @@ public: /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// cRSAPrivateKey: - -/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// cPublicKey: - -cPublicKey::cPublicKey(const AString & a_PublicKeyDER) -{ - pk_init(&m_Pk); - if (pk_parse_public_key(&m_Pk, (const Byte *)a_PublicKeyDER.data(), a_PublicKeyDER.size()) != 0) - { - ASSERT(!"Cannot parse PubKey"); - return; - } - InitRnd(); -} - - - - - -cPublicKey::~cPublicKey() -{ - pk_free(&m_Pk); -} - - - - - -int cPublicKey::Decrypt(const Byte * a_EncryptedData, size_t a_EncryptedLength, Byte * a_DecryptedData, size_t a_DecryptedMaxLength) -{ - size_t DecryptedLen = a_DecryptedMaxLength; - int res = pk_decrypt(&m_Pk, - a_EncryptedData, a_EncryptedLength, - a_DecryptedData, &DecryptedLen, a_DecryptedMaxLength, - ctr_drbg_random, &m_Ctr_drbg - ); - if (res != 0) - { - return res; - } - return (int)DecryptedLen; -} - - - - - -int cPublicKey::Encrypt(const Byte * a_PlainData, size_t a_PlainLength, Byte * a_EncryptedData, size_t a_EncryptedMaxLength) -{ - size_t EncryptedLength = a_EncryptedMaxLength; - int res = pk_encrypt(&m_Pk, - a_PlainData, a_PlainLength, a_EncryptedData, &EncryptedLength, a_EncryptedMaxLength, - ctr_drbg_random, &m_Ctr_drbg - ); - if (res != 0) - { - return res; - } - return (int)EncryptedLength; -} - - - - - -void cPublicKey::InitRnd(void) -{ - entropy_init(&m_Entropy); - const unsigned char pers[] = "rsa_genkey"; - ctr_drbg_init(&m_Ctr_drbg, entropy_func, &m_Entropy, pers, sizeof(pers) - 1); -} - - - - - -/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // cAESCFBDecryptor: cAESCFBDecryptor::cAESCFBDecryptor(void) : |