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
35 lines
713 B
// iopPubBlob.h: interface for the CPublicKeyBlob.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#if !defined(IOP_PUBBLOB_H)
|
|
#define IOP_PUBBLOB_H
|
|
|
|
#include <windows.h>
|
|
|
|
#include "DllSymDefn.h"
|
|
|
|
namespace iop
|
|
{
|
|
|
|
class IOPDLL_API CPublicKeyBlob
|
|
{
|
|
public:
|
|
CPublicKeyBlob() {};
|
|
virtual ~CPublicKeyBlob(){};
|
|
|
|
BYTE bModulusLength;
|
|
BYTE bModulus[128];
|
|
BYTE bExponent[4];
|
|
};
|
|
|
|
/////////////////////////// HELPERS /////////////////////////////////
|
|
|
|
void IOPDLL_API __cdecl // __cdecl req'd by CCI
|
|
Clear(CPublicKeyBlob &rKeyBlob); // defined in KeyBlobHlp.cpp
|
|
|
|
} // namespace iop
|
|
|
|
|
|
#endif // !defined(IOP_PUBBLOB_H)
|