1234567891011121314151617181920212223242526272829303132333435 |
- /*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /*!
- * \file
- * \brief Implementation of Intel(R) EPID specific predicates for Set MemParams
- * strcuture
- */
- void SetMemberParams(BitSupplier rnd_func, void* rnd_param, const FpElemStr* f,
- MemberParams* params) {
- (void)rnd_func;
- (void)rnd_param;
- params->f = f;
- params->rnd_func = rnd_func;
- params->rnd_param = rnd_param;
- params->f = f;
- }
|