windows-nt/Source/XPSP1/NT/inetsrv/iis/ui/itools/keyring/onlnauth.h

27 lines
558 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
// COnlineAuthority
// helper class for interfacing with the online authority interfaces
// note that this is not actually an interface, just a tool to use them
class COnlineAuthority
{
public:
COnlineAuthority();
~COnlineAuthority();
// initialize the class with an interface string
BOOL FInitSZ( CString szGUID );
// stored property strings
BOOL FSetPropertyString( BSTR bstr );
BOOL FGetPropertyString( BSTR* pBstr );
// the interfaces
ICertGetConfig *pIConfig;
ICertRequest *pIRequest;
};