Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
798 B

  1. // iopPriBlob.h: interface for the CPrivateKeyBlob
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(IOP_PRIBLOB_H)
  5. #define IOP_PRIBLOB_H
  6. #include <windows.h>
  7. #include "DllSymDefn.h"
  8. namespace iop
  9. {
  10. class IOPDLL_API CPrivateKeyBlob
  11. {
  12. public:
  13. CPrivateKeyBlob(){};
  14. virtual ~CPrivateKeyBlob(){};
  15. BYTE bPLen;
  16. BYTE bQLen;
  17. BYTE bInvQLen;
  18. BYTE bKsecModQLen;
  19. BYTE bKsecModPLen;
  20. BYTE bP[64];
  21. BYTE bQ[64];
  22. BYTE bInvQ[64];
  23. BYTE bKsecModQ[64];
  24. BYTE bKsecModP[64];
  25. };
  26. /////////////////////////// HELPERS /////////////////////////////////
  27. void IOPDLL_API __cdecl // __cdecl req'd by CCI
  28. Clear(CPrivateKeyBlob &rKeyBlob); // defined in KeyBlobHlp.cpp
  29. } // namespace iop
  30. #endif // IOP_PRIBLOB_H