summaryrefslogtreecommitdiff
path: root/cryptopp/cpp_rsam.h
diff options
context:
space:
mode:
authorwatcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb>2011-11-26 14:19:43 +0000
committerwatcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb>2011-11-26 14:19:43 +0000
commit7aff1e4cb053394db57c2814d5fe1e6493e0cc75 (patch)
treec8585e44049b37e4da152495c954242204c2c38d /cryptopp/cpp_rsam.h
parent6f3d69266933ef120d229e0daf2da164b77214d0 (diff)
Project folders rename part 2
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@214 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'cryptopp/cpp_rsam.h')
-rw-r--r--cryptopp/cpp_rsam.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/cryptopp/cpp_rsam.h b/cryptopp/cpp_rsam.h
deleted file mode 100644
index 92c1143..0000000
--- a/cryptopp/cpp_rsam.h
+++ /dev/null
@@ -1,45 +0,0 @@
-#ifndef __CPP_RSAM_H__
-#define __CPP_RSAM_H__
-
-int __cdecl rsa_gen_keypair(short);
-int __cdecl rsa_get_keypair(short,PBYTE,int*,PBYTE,int*);
-int __cdecl rsa_get_keyhash(short,PBYTE,int*,PBYTE,int*);
-int __cdecl rsa_set_keypair(short,PBYTE,int);
-int __cdecl rsa_get_pubkey(HANDLE,PBYTE,int*);
-int __cdecl rsa_set_pubkey(HANDLE,PBYTE,int);
-void __cdecl rsa_set_timeout(int);
-int __cdecl rsa_get_state(HANDLE);
-int __cdecl rsa_get_hash(PBYTE,int,PBYTE,int*);
-int __cdecl rsa_connect(HANDLE);
-int __cdecl rsa_disconnect(HANDLE);
-int __cdecl rsa_disabled(HANDLE);
-LPSTR __cdecl rsa_recv(HANDLE,LPCSTR);
-int __cdecl rsa_send(HANDLE,LPCSTR);
-int __cdecl rsa_encrypt_file(HANDLE,LPCSTR,LPCSTR);
-int __cdecl rsa_decrypt_file(HANDLE,LPCSTR,LPCSTR);
-int __cdecl rsa_export_keypair(short,LPSTR,LPSTR,LPSTR);
-int __cdecl rsa_import_keypair(short,LPSTR,LPSTR);
-int __cdecl rsa_export_pubkey(HANDLE,LPSTR);
-int __cdecl rsa_import_pubkey(HANDLE,LPSTR);
-
-
-void inject_msg(HANDLE,int,const string&);
-string encode_msg(short,pRSADATA,string&);
-string decode_msg(pRSADATA,string&);
-string encode_rsa(short,pRSADATA,pRSAPRIV,string&);
-string decode_rsa(pRSADATA,pRSAPRIV,string&);
-string gen_aes_key_iv(short,pRSADATA,pRSAPRIV);
-void init_priv(pRSAPRIV,string&);
-void init_pub(pRSADATA,string&);
-void null_msg(HANDLE,int,int);
-
-void rsa_timeout(HANDLE,pRSADATA);
-void rsa_alloc(pCNTX);
-void rsa_free(pCNTX);
-void rsa_free_thread(pRSADATA);
-void clear_queue(pRSADATA);
-
-
-unsigned __stdcall sttConnectThread(LPVOID);
-
-#endif