Home | History | Annotate | Download | only in src

Lines Matching defs:Fp

96     FiniteField* Fp = ctx->epid2_params->Fp;
123 sts = NewFfElement(Fp, &y2);
132 sts = NewFfElement(Fp, &mu);
134 sts = NewFfElement(Fp, &nu);
136 sts = NewFfElement(Fp, &rmu);
153 sts = FfGetRandom(Fp, &kOne, rnd_func, rnd_param, mu);
156 sts = FfNeg(Fp, mu, nu);
163 sts = WriteFfElement(Fp, mu, &mu_str, sizeof(mu_str));
165 sts = WriteFfElement(Fp, nu, &nu_str, sizeof(nu_str));
180 sts = FfGetRandom(Fp, &kOne, rnd_func, rnd_param, rmu);
199 sts = WriteFfElement(Fp, rmu, &rmu_str, sizeof(rmu_str));
218 sts = HashNrProveCommitment(Fp, ctx->hash_alg, &sig->B, &sig->K,
228 sts = NewFfElement(Fp, &t2);
231 sts = NewFfElement(Fp, &c);
234 sts = ReadFfElement(Fp, &c_str, sizeof(c_str), c);
238 sts = FfMul(Fp, c, mu, t2);
240 sts = FfAdd(Fp, rmu, t2, t2);
242 sts = WriteFfElement(Fp, t2, &proof->smu, sizeof(proof->smu));
246 sts = FfMul(Fp, c, nu, t2);
249 sts = WriteFfElement(Fp, t2, digest, digest_len);
253 sts = WriteFfElement(Fp, t2, &proof->snu, sizeof(proof->snu));