Home
last modified time | relevance | path

Searched refs:EcMultiExp (Results 1 – 5 of 5) sorted by relevance

/external/epid-sdk/epid/common/math/unittests/
Decgroup-test.cc1044 EXPECT_EQ(kEpidBadArgErr, EcMultiExp(this->efq2, pts_ec1, b, m, this->efq_r)); in TEST_F()
1045 EXPECT_EQ(kEpidBadArgErr, EcMultiExp(this->efq, pts_ec2, b, m, this->efq_r)); in TEST_F()
1046 EXPECT_EQ(kEpidBadArgErr, EcMultiExp(this->efq, pts_ec1, b, m, this->efq2_r)); in TEST_F()
1048 EcMultiExp(this->efq, pts_ec1_ec2, b, m, this->efq_r)); in TEST_F()
1065 EXPECT_EQ(kEpidBadArgErr, EcMultiExp(nullptr, pts, b, m, this->efq_r)); in TEST_F()
1066 EXPECT_EQ(kEpidBadArgErr, EcMultiExp(this->efq, nullptr, b, m, this->efq_r)); in TEST_F()
1068 EcMultiExp(this->efq, pts, nullptr, m, this->efq_r)); in TEST_F()
1069 EXPECT_EQ(kEpidBadArgErr, EcMultiExp(this->efq, pts, b, m, nullptr)); in TEST_F()
1071 EcMultiExp(this->efq, pts_withnull, b, m, this->efq_r)); in TEST_F()
1073 EcMultiExp(this->efq, pts, b_withnull, m, this->efq_r)); in TEST_F()
[all …]
/external/epid-sdk/epid/verifier/src/
Dnrverify.c171 sts = EcMultiExp(G1, r1p, (const BigNumStr**)r1b, 2, r1_pt); in EpidNrVerify()
191 sts = EcMultiExp(G1, r2p, (const BigNumStr**)r2b, 3, r2_pt); in EpidNrVerify()
Dverifybasic.c231 res = EcMultiExp(G1, points, exponents, COUNT_OF(points), R1); in EpidVerifyBasicSig()
244 res = EcMultiExp(G2, points, exponents, COUNT_OF(points), t1); in EpidVerifyBasicSig()
/external/epid-sdk/epid/common/math/
Decgroup.h264 EpidStatus EcMultiExp(EcGroup* g, EcPoint const** a, BigNumStr const** b,
/external/epid-sdk/epid/common/math/src/
Decgroup.c571 EpidStatus EcMultiExp(EcGroup* g, EcPoint const** a, BigNumStr const** b, in EcMultiExp() function
745 return EcMultiExp(g, a, b, m, r); in EcSscmMultiExp()