summaryrefslogtreecommitdiff
path: root/plugins/SecureIM/src/svcs_rsa.h
blob: 3f43e71d30ed0505bf29df887de704260a0aa3eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __SVCS_RSA_H__
#define __SVCS_RSA_H__

#include <windows.h>

extern pRSA_EXPORT exp;
extern RSA_IMPORT imp;
extern BOOL rsa_4096;

int __cdecl rsa_inject(HANDLE,LPCSTR);
int __cdecl rsa_check_pub(HANDLE,PBYTE,int,PBYTE,int);
void __cdecl rsa_notify(HANDLE,int);

unsigned __stdcall sttGenerateRSA(LPVOID);
BYTE loadRSAkey(pUinKey);
void createRSAcntx(pUinKey);
void resetRSAcntx(pUinKey);
void deleteRSAcntx(pUinKey);

#endif