mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 22:47:29 +08:00
[saco] Add ms_dwRSAKeySize variable to CKeyPair
This commit is contained in:
parent
8ec4a246a6
commit
98041c3628
@ -4,6 +4,10 @@
|
|||||||
|
|
||||||
//------------------------------------
|
//------------------------------------
|
||||||
|
|
||||||
|
DWORD CKeyPair::ms_dwRSAKeySize = 1024;
|
||||||
|
|
||||||
|
//------------------------------------
|
||||||
|
|
||||||
CKeyPair::CKeyPair(CCryptoContext* pContext)
|
CKeyPair::CKeyPair(CCryptoContext* pContext)
|
||||||
{
|
{
|
||||||
m_pContext = pContext;
|
m_pContext = pContext;
|
||||||
|
@ -7,6 +7,8 @@
|
|||||||
class CKeyPair
|
class CKeyPair
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
|
static DWORD ms_dwRSAKeySize;
|
||||||
|
|
||||||
HCRYPTKEY m_hCryptKey;
|
HCRYPTKEY m_hCryptKey;
|
||||||
CCryptoContext* m_pContext;
|
CCryptoContext* m_pContext;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user