Skip to content

Commit d989e85

Browse files
committed
Align with paper.
1 parent 02b04d1 commit d989e85

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/cp/relic_cp_pdbat.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
#define RAND_DIST 40
4242

4343
/**
44-
* Bound \tau on how many elements the adversary can store.
44+
* Bound \tau on how many elements the adversary can compute.
4545
*/
46-
#define BND_STORE 72
46+
#define BND_TIME 72
4747

4848
/*============================================================================*/
4949
/* Public definitions */
@@ -300,7 +300,7 @@ int cp_amore_ask(bn_t *r, g1_t *c, g1_t x, g2_t y, g2_t d, g1_t u, g2_t v,
300300
bn_t n, t, z;
301301
g1_t w;
302302
int result = RLC_OK;
303-
size_t eps = RAND_DIST/2 + BND_STORE - 1;
303+
size_t eps = (RAND_DIST - 1)/2 + BND_TIME;
304304

305305
bn_null(n);
306306
bn_null(t);

0 commit comments

Comments
 (0)