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.

26 lines
558 B

  1. // COnlineAuthority
  2. // helper class for interfacing with the online authority interfaces
  3. // note that this is not actually an interface, just a tool to use them
  4. class COnlineAuthority
  5. {
  6. public:
  7. COnlineAuthority();
  8. ~COnlineAuthority();
  9. // initialize the class with an interface string
  10. BOOL FInitSZ( CString szGUID );
  11. // stored property strings
  12. BOOL FSetPropertyString( BSTR bstr );
  13. BOOL FGetPropertyString( BSTR* pBstr );
  14. // the interfaces
  15. ICertGetConfig *pIConfig;
  16. ICertRequest *pIRequest;
  17. };