1
0
Fork 0
cuberite-2a/src/mbedTLS++/CryptoKey.h

77 lines
2.3 KiB
C
Raw Normal View History

2017-09-19 08:34:08 +00:00
// CryptoKey.h
// Declares the cCryptoKey class representing a RSA public key in mbedTLS
#pragma once
#include "CtrDrbgContext.h"
#include "mbedtls/pk.h"
class cCryptoKey
{
friend class cSslConfig;
2016-02-05 21:45:45 +00:00
public:
/** Constructs an empty key instance. Before use, it needs to be filled by ParsePublic() or ParsePrivate() */
cCryptoKey(void);
2016-02-05 21:45:45 +00:00
/** Constructs the public key out of the DER- or PEM-encoded pubkey data */
cCryptoKey(const AString & a_PublicKeyData);
2016-02-05 21:45:45 +00:00
/** Constructs the private key out of the DER- or PEM-encoded privkey data, with the specified password.
If a_Password is empty, no password is assumed. */
cCryptoKey(const AString & a_PrivateKeyData, const AString & a_Password);
2016-02-05 21:45:45 +00:00
~cCryptoKey();
2016-02-05 21:45:45 +00:00
/** Decrypts the data using the stored public key
Both a_EncryptedData and a_DecryptedData must be at least <KeySizeBytes> bytes large.
Returns the number of bytes decrypted, or negative number for error. */
int Decrypt(const Byte * a_EncryptedData, size_t a_EncryptedLength, Byte * a_DecryptedData, size_t a_DecryptedMaxLength);
2016-02-05 21:45:45 +00:00
/** Encrypts the data using the stored public key
Both a_EncryptedData and a_DecryptedData must be at least <KeySizeBytes> bytes large.
Returns the number of bytes decrypted, or negative number for error. */
int Encrypt(const Byte * a_PlainData, size_t a_PlainLength, Byte * a_EncryptedData, size_t a_EncryptedMaxLength);
2016-02-05 21:45:45 +00:00
/** Parses the specified data into a public key representation.
The key can be DER- or PEM-encoded.
Returns 0 on success, mbedTLS error code on failure. */
int ParsePublic(const void * a_Data, size_t a_NumBytes);
/** Parses the specified data into a private key representation.
If a_Password is empty, no password is assumed.
The key can be DER- or PEM-encoded.
Returns 0 on success, mbedTLS error code on failure. */
int ParsePrivate(const void * a_Data, size_t a_NumBytes, const AString & a_Password);
2016-02-05 21:45:45 +00:00
/** Returns true if the contained key is valid. */
bool IsValid(void) const;
protected:
/** The mbedTLS representation of the key data */
mbedtls_pk_context m_Pk;
2016-02-05 21:45:45 +00:00
/** The random generator used in encryption and decryption */
cCtrDrbgContext m_CtrDrbg;
2016-02-05 21:45:45 +00:00
/** Returns the internal context ptr. Only use in mbedTLS API calls. */
mbedtls_pk_context * GetInternal(void) { return &m_Pk; }
} ;
2017-07-20 11:19:18 +00:00
typedef std::shared_ptr<cCryptoKey> cCryptoKeyPtr;