Leaked source code of windows server 2003
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.

35 lines
713 B

  1. // iopPubBlob.h: interface for the CPublicKeyBlob.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(IOP_PUBBLOB_H)
  5. #define IOP_PUBBLOB_H
  6. #include <windows.h>
  7. #include "DllSymDefn.h"
  8. namespace iop
  9. {
  10. class IOPDLL_API CPublicKeyBlob
  11. {
  12. public:
  13. CPublicKeyBlob() {};
  14. virtual ~CPublicKeyBlob(){};
  15. BYTE bModulusLength;
  16. BYTE bModulus[128];
  17. BYTE bExponent[4];
  18. };
  19. /////////////////////////// HELPERS /////////////////////////////////
  20. void IOPDLL_API __cdecl // __cdecl req'd by CCI
  21. Clear(CPublicKeyBlob &rKeyBlob); // defined in KeyBlobHlp.cpp
  22. } // namespace iop
  23. #endif // !defined(IOP_PUBBLOB_H)