HomeSort by relevance Sort by last modified time
    Searched refs:Pairing (Results 1 - 12 of 12) sorted by null

  /external/epid-sdk/doc/html/
group___pairing_primitives.js 3 [ "Intel(R) EPID 1.1 specific pairing", "group___epid11_pairing_primitives.html", "group___epid11_pairing_primitives" ],
6 [ "Pairing", "group___pairing_primitives.html#ga58a9d3cb6129274a04c72a35a52f768d", null ]
  /external/epid-sdk/epid/common/math/
pairing.h 19 * \brief Pairing interface.
30 /// Pairing operations
32 \defgroup PairingPrimitives pairing
33 Provides APIs for defining and using a pairing relationship between two
40 /// A pairing
43 /// Constructs a new pairing state.
45 Allocates memory and creates a new pairing state for Optimal Ate Pairing.
50 The EcGroup from which the first parameter of the pairing is taken.
52 The EcGroup from which the second parameter of the pairing is taken
    [all...]
  /external/epid-sdk/epid/member/src/
precomp.c 55 // 1. The member computes e12 = pairing(h1, g2).
56 sts = Pairing(ps_ctx, pub_key_->h1, g2, e);
61 // 2. The member computes e22 = pairing(h2, g2).
62 sts = Pairing(ps_ctx, pub_key_->h2, g2, e);
67 // 3. The member computes e2w = pairing(h2, w).
68 sts = Pairing(ps_ctx, pub_key_->h2, pub_key_->w, e);
73 // 4. The member computes ea2 = pairing(A, g2).
78 sts = Pairing(ps_ctx, A, g2, e);
validatekey.c 25 #include "epid/common/math/pairing.h"
83 // 4. The member computes t3 = pairing(A, t1).
90 sts = Pairing(ps_ctx, A, t1, t3);
107 // Step 7. The member computes t4 = pairing(t2, g2).
110 sts = Pairing(ps_ctx, t2, g2, t4);
decompress_privkey.c 160 // c. It computes t3 = pairing(A, t1).
161 result = Pairing(ps_ctx, priv_key_.A, t1, t3);
169 // f. It computes t4 = pairing(t2, g2).
170 result = Pairing(ps_ctx, t2, g2, t4);
presig.c 243 // 4.l.i e12rf = pairing(ETPM, g2)
244 sts = Pairing(ps_ctx, e, ctx->epid2_params->g2, R2);
signbasic.c 195 // c.ii. e12rf = pairing(ETPM, g2)
196 sts = Pairing(ps_ctx, e, ctx->epid2_params->g2, R2);
  /external/epid-sdk/epid/common/math/unittests/
pairing-test.cc 19 * \brief Pairing unit tests.
35 #include "epid/common/math/pairing.h"
38 #include "epid/common/math/src/pairing-internal.h"
173 // Pairing
221 EXPECT_EQ(kEpidNoErr, Pairing(ps, ga_elem, gb_elem, r));
227 // test that pairing fails if any options are NULL
238 EXPECT_EQ(kEpidBadArgErr, Pairing(NULL, ga_elem, gb_elem, r));
239 EXPECT_EQ(kEpidBadArgErr, Pairing(ps, NULL, gb_elem, r));
240 EXPECT_EQ(kEpidBadArgErr, Pairing(ps, ga_elem, NULL, r));
241 EXPECT_EQ(kEpidBadArgErr, Pairing(ps, ga_elem, gb_elem, NULL))
    [all...]
  /external/epid-sdk/epid/verifier/src/
context.c 23 #include "epid/common/math/pairing.h"
620 // 1. The verifier computes e12 = pairing(h1, g2).
621 result = Pairing(ps_ctx, pub_key->h1, params->g2, e12);
625 // 2. The verifier computes e22 = pairing(h2, g2).
626 result = Pairing(ps_ctx, pub_key->h2, params->g2, e22);
630 // 3. The verifier computes e2w = pairing(h2, w).
631 result = Pairing(ps_ctx, pub_key->h2, pub_key->w, e2w);
635 // 4. The verifier computes eg12 = pairing(g1, g2).
636 result = Pairing(ps_ctx, params->g1, params->g2, eg12);
verifybasic.c 247 // k. The verifier computes R2 = pairing(T, t1).
248 res = Pairing(ctx->epid2_params->pairing_state, T, t1, R2);
  /external/google-breakpad/src/common/
dwarf_cu_to_module_unittest.cc     [all...]
  /external/epid-sdk/epid/common/math/src/
pairing.c 19 * \brief Pairing implementation.
22 #include "epid/common/math/pairing.h"
27 #include "epid/common/math/src/pairing-internal.h"
197 // 1. Set param(pairing) = (param(G1), param(G2), param(GT), t, neg)
271 // for the pairing operations.
321 EpidStatus Pairing(PairingState* ps, EcPoint const* a, EcPoint const* b,
    [all...]

Completed in 1090 milliseconds