mirror of
https://github.com/dashr9230/SA-MP.git
synced 2025-01-06 01:23:30 +08:00
22 lines
314 B
C
22 lines
314 B
C
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
class CCryptoContext
|
||
|
{
|
||
|
private:
|
||
|
static DWORD ms_dwRefCount;
|
||
|
static DWORD ms_dwProviderType;
|
||
|
static LPTSTR ms_szProviderName;
|
||
|
static LPTSTR ms_szContainerName;
|
||
|
|
||
|
HCRYPTPROV m_hCryptProv;
|
||
|
|
||
|
public:
|
||
|
CCryptoContext(void);
|
||
|
~CCryptoContext(void);
|
||
|
|
||
|
HCRYPTPROV GetProvider();
|
||
|
};
|