Replaced MSVC-specific decorators with our universal ones.
This commit is contained in:
parent
616fb15508
commit
4f49c978cf
@ -42,7 +42,7 @@ public:
|
|||||||
bool IsValid(void) const { return m_IsValid; }
|
bool IsValid(void) const { return m_IsValid; }
|
||||||
|
|
||||||
/** Returns the internal context ptr. Only use in PolarSSL API calls. */
|
/** Returns the internal context ptr. Only use in PolarSSL API calls. */
|
||||||
__declspec(deprecated) ctr_drbg_context * Get(void) { return &m_CtrDrbg; }
|
OBSOLETE ctr_drbg_context * Get(void) { return &m_CtrDrbg; }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
/** The entropy source used for generating the random */
|
/** The entropy source used for generating the random */
|
||||||
|
@ -26,7 +26,7 @@ public:
|
|||||||
int Parse(const void * a_CertContents, size_t a_Size);
|
int Parse(const void * a_CertContents, size_t a_Size);
|
||||||
|
|
||||||
/** Returns the internal cert ptr. Only use in PolarSSL API calls. */
|
/** Returns the internal cert ptr. Only use in PolarSSL API calls. */
|
||||||
__declspec(deprecated) x509_crt * Get(void) { return &m_Cert; }
|
OBSOLETE x509_crt * Get(void) { return &m_Cert; }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
x509_crt m_Cert;
|
x509_crt m_Cert;
|
||||||
|
Loading…
Reference in New Issue
Block a user