summaryrefslogtreecommitdiff
path: root/plugins/CryptoPP/src/cpp_rsam.h
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-07-20 16:21:49 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-07-20 16:21:49 +0000
commitf424a18112032cf61d2871a6b91a5af607c171ae (patch)
tree88fedc4e28941ceecda7026f0b06eba6271f91d5 /plugins/CryptoPP/src/cpp_rsam.h
parentbfe1bd0fc087be44c70904aee0fe4276643d206d (diff)
CryptoPP:
changed folder structure git-svn-id: http://svn.miranda-ng.org/main/trunk@1083 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CryptoPP/src/cpp_rsam.h')
-rw-r--r--plugins/CryptoPP/src/cpp_rsam.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/plugins/CryptoPP/src/cpp_rsam.h b/plugins/CryptoPP/src/cpp_rsam.h
new file mode 100644
index 0000000000..92c1143212
--- /dev/null
+++ b/plugins/CryptoPP/src/cpp_rsam.h
@@ -0,0 +1,45 @@
+#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