2014-04-29 11:13:08 -04:00
|
|
|
|
2014-05-01 09:21:41 -04:00
|
|
|
// CryptoKey.h
|
2014-04-29 11:13:08 -04:00
|
|
|
|
2014-05-01 09:21:41 -04:00
|
|
|
// Declares the cCryptoKey class representing a RSA public key in PolarSSL
|
2014-04-29 11:13:08 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "CtrDrbgContext.h"
|
|
|
|
#include "polarssl/pk.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-05-01 09:21:41 -04:00
|
|
|
class cCryptoKey
|
2014-04-29 11:13:08 -04:00
|
|
|
{
|
2014-04-30 18:28:27 -04:00
|
|
|
friend class cSslContext;
|
|
|
|
|
2014-04-29 11:13:08 -04:00
|
|
|
public:
|
2014-04-30 18:28:27 -04:00
|
|
|
/** Constructs an empty key instance. Before use, it needs to be filled by ParsePublic() or ParsePrivate() */
|
2014-05-01 09:21:41 -04:00
|
|
|
cCryptoKey(void);
|
2014-04-30 18:28:27 -04:00
|
|
|
|
|
|
|
/** Constructs the public key out of the DER- or PEM-encoded pubkey data */
|
2014-05-01 09:21:41 -04:00
|
|
|
cCryptoKey(const AString & a_PublicKeyData);
|
2014-04-30 18:28:27 -04: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. */
|
2014-05-01 09:21:41 -04:00
|
|
|
cCryptoKey(const AString & a_PrivateKeyData, const AString & a_Password);
|
2014-04-29 11:13:08 -04:00
|
|
|
|
2014-05-01 09:21:41 -04:00
|
|
|
~cCryptoKey();
|
2014-04-29 11:13:08 -04: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);
|
|
|
|
|
|
|
|
/** 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);
|
2014-04-30 18:28:27 -04:00
|
|
|
|
|
|
|
/** Parses the specified data into a public key representation.
|
|
|
|
The key can be DER- or PEM-encoded.
|
|
|
|
Returns 0 on success, PolarSSL 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, PolarSSL error code on failure. */
|
|
|
|
int ParsePrivate(const void * a_Data, size_t a_NumBytes, const AString & a_Password);
|
|
|
|
|
|
|
|
/** Returns true if the contained key is valid. */
|
|
|
|
bool IsValid(void) const;
|
2014-04-29 11:13:08 -04:00
|
|
|
|
|
|
|
protected:
|
2014-05-01 09:21:41 -04:00
|
|
|
/** The PolarSSL representation of the key data */
|
2014-04-29 11:13:08 -04:00
|
|
|
pk_context m_Pk;
|
|
|
|
|
|
|
|
/** The random generator used in encryption and decryption */
|
|
|
|
cCtrDrbgContext m_CtrDrbg;
|
2014-04-30 18:28:27 -04:00
|
|
|
|
|
|
|
|
|
|
|
/** Returns the internal context ptr. Only use in PolarSSL API calls. */
|
|
|
|
pk_context * GetInternal(void) { return &m_Pk; }
|
2014-04-29 11:13:08 -04:00
|
|
|
} ;
|
|
|
|
|
2014-05-01 09:21:41 -04:00
|
|
|
typedef SharedPtr<cCryptoKey> cCryptoKeyPtr;
|
2014-04-29 11:13:08 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|