12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #ifndef EPID_COMMON_TESTHELPER_EPID2PARAMS_WRAPPER_TESTHELPER_H_
- #define EPID_COMMON_TESTHELPER_EPID2PARAMS_WRAPPER_TESTHELPER_H_
- typedef struct Epid2Params_ Epid2Params_;
- typedef struct FiniteField FiniteField;
- typedef struct EcGroup EcGroup;
- class Epid2ParamsObj {
- public:
-
- Epid2ParamsObj();
-
-
- Epid2ParamsObj(const Epid2ParamsObj&) = delete;
- Epid2ParamsObj& operator=(const Epid2ParamsObj&) = delete;
-
- ~Epid2ParamsObj();
-
- Epid2Params_* ctx() const;
-
- operator Epid2Params_*() const;
-
- operator const Epid2Params_*() const;
-
- FiniteField* Fp() const;
-
- EcGroup* G1() const;
- private:
-
- Epid2Params_* params_;
- };
- #endif
|