12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #ifndef __X509Parser_H__
- #define __X509Parser_H__
- #include <stdint.h>
- #include "epid/common/types.h"
- #include "epid/common/1.1/types.h"
- #include "pse_pr_types.h"
- #include "pse_pr_sigma_common_defs.h"
- class X509Parser
- {
- public:
- ~X509Parser(void);
- static UINT32 ParseGroupCertificate
- (
- const EcDsaPubKey* pSerializedPublicKey,
- const X509_GROUP_CERTIFICATE_VLR* pGroupCertVlr,
- UINT32* pGID,
- Epid11GroupPubKey* pGroupPubKey
- );
- private:
-
- X509Parser();
- X509Parser(const X509Parser& rhs);
- X509Parser& operator=(const X509Parser& rhs);
- X509Parser* operator&();
- const X509Parser* operator&() const;
- };
- #endif
|