HomeSort by relevance Sort by last modified time
    Searched refs:G1ElemStr (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/epid-sdk/epid/member/tpm2/
createprimary.h 25 typedef struct G1ElemStr G1ElemStr;
37 EpidStatus Tpm2CreatePrimary(Tpm2Ctx* ctx, G1ElemStr* p_str);
  /external/epid-sdk/epid/member/tpm2/unittests/
tpm2-testhelper.h 37 typedef struct G1ElemStr G1ElemStr;
44 static const G1ElemStr kEpidPointStr;
48 static const G1ElemStr kP1Str;
49 static const G1ElemStr kg1Str;
52 static const G1ElemStr kP2Sha256Str;
53 static const G1ElemStr kP2Sha256ExpF;
56 static const G1ElemStr kP2Sha384Str;
57 static const G1ElemStr kP2Sha384ExpF;
60 static const G1ElemStr kP2Sha512Str
    [all...]
createprimary-test.cc 35 G1ElemStr res = {0};
43 G1ElemStr res = {0};
conversion-tss-test.cc 32 bool operator==(G1ElemStr const& epid_point, TPM2B_ECC_POINT const& tpm_point) {
34 sizeof(G1ElemStr) / 2) != 0)
38 sizeof(G1ElemStr) / 2);
147 G1ElemStr str = {0};
154 G1ElemStr str = {0};
  /external/epid-sdk/epid/member/src/
precomp.h 26 typedef struct G1ElemStr G1ElemStr;
56 G1ElemStr const* A_str,
join_commitment.h 26 typedef struct G1ElemStr G1ElemStr;
61 G1ElemStr const* F_str, G1ElemStr const* R_str,
validatekey.h 27 typedef struct G1ElemStr G1ElemStr;
60 bool EpidMemberIsKeyValid(MemberCtx* ctx, G1ElemStr const* A_str,
61 FpElemStr const* x_str, G1ElemStr const* h1_str,
nrprove_commitment.h 23 #include "epid/common/types.h" // HashAlg, G1ElemStr
35 G1ElemStr T; ///< T value for NrProof
36 G1ElemStr R1; ///< Serialized G1 element
37 G1ElemStr R2; ///< Serialized G1 element
76 G1ElemStr const* B_str, G1ElemStr const* K_str,
sign_commitment.h 28 G1ElemStr B; ///< B value for signature
29 G1ElemStr K; ///< K value for signature
30 G1ElemStr T; ///< T value for signature
31 G1ElemStr R1; ///< Serialized G1 element
hash_basename.h 28 typedef struct G1ElemStr G1ElemStr;
56 size_t basename_len, G1ElemStr* B_str,
join_commitment.c 34 G1ElemStr g1; ///< Intel(R) EPID 2.0 parameter g1
36 G1ElemStr h1; ///< Group public key value h1
37 G1ElemStr h2; ///< Group public key value h2
39 G1ElemStr F; ///< Variable F computed in algorithm
40 G1ElemStr R; ///< Variable R computed in algorithm
47 G1ElemStr const* F_str, G1ElemStr const* R_str,
nrprove_commitment.c 35 G1ElemStr g1; //!< Generator of G1 (512-bit)
36 G1ElemStr B; //!< (element of G1): part of basic signature Sigma0
37 G1ElemStr K; //!< (element of G1): part of basic signature Sigma0
38 G1ElemStr rlB; //!< (element of G1): one entry in SigRL
39 G1ElemStr rlK; //!< (element of G1): one entry in SigRL
46 G1ElemStr const* B_str, G1ElemStr const* K_str,
context.h 81 G1ElemStr B; ///< an element in G1
82 G1ElemStr K; ///< an element in G1
83 G1ElemStr T; ///< an element in G1
84 G1ElemStr R1; ///< an element in G1
  /external/epid-sdk/epid/common/src/
commitment.h 38 G1ElemStr g1; ///< Intel(R) EPID2.0 parameter g1
40 G1ElemStr h1; ///< Group public key value h1
41 G1ElemStr h2; ///< Group public key value h2
43 G1ElemStr B; ///< Variable B computed in algorithm
44 G1ElemStr K; ///< Variable K computed in algorithm
45 G1ElemStr T; ///< Variable T computed in algorithm
46 G1ElemStr R1; ///< Variable R1 computed in algorithm
92 EpidStatus SetCalculatedCommitValues(G1ElemStr const* B, G1ElemStr const* K,
93 G1ElemStr const* T, EcPoint const* R1
    [all...]
commitment.c 45 EpidStatus SetCalculatedCommitValues(G1ElemStr const* B, G1ElemStr const* K,
46 G1ElemStr const* T, EcPoint const* R1,
  /external/epid-sdk/epid/member/tpm2/ibm_tss/
conversion.h 43 typedef struct G1ElemStr G1ElemStr;
103 EpidStatus ReadTpm2EcPoint(G1ElemStr const* p_str, TPM2B_ECC_POINT* tpm_point);
115 EpidStatus WriteTpm2EcPoint(TPM2B_ECC_POINT const* tpm_point, G1ElemStr* p_str);
conversion.c 83 EpidStatus ReadTpm2EcPoint(G1ElemStr const* p_str, TPM2B_ECC_POINT* tpm_point) {
90 sizeof(G1ElemStr) / 2)) {
93 tpm_point->point.x.t.size = sizeof(G1ElemStr) / 2;
97 sizeof(G1ElemStr) / 2)) {
100 tpm_point->point.y.t.size = sizeof(G1ElemStr) / 2;
107 G1ElemStr* p_str) {
112 if (tpm_point->point.x.t.size > sizeof(G1ElemStr) / 2 ||
113 tpm_point->point.y.t.size > sizeof(G1ElemStr) / 2) {
117 memset(p_str, '\0', sizeof(G1ElemStr));
121 memcpy_S(&p_str->x + (sizeof(G1ElemStr) / 2 - tpm_point->point.x.t.size)
    [all...]
  /external/epid-sdk/epid/common/
types.h 113 typedef struct G1ElemStr {
116 } G1ElemStr;
142 G1ElemStr g1; ///< a generator (an element) of G1
155 G1ElemStr h1; ///< an element in G1
156 G1ElemStr h2; ///< an element in G1
175 G1ElemStr A; ///< an element in G1
199 G1ElemStr A; ///< an element in G1
211 G1ElemStr F; ///< an element in G1
223 G1ElemStr B; ///< an element in G1
224 G1ElemStr K; ///< an element in G
    [all...]
  /external/epid-sdk/epid/member/tiny/math/
serialize.h 37 typedef struct G1ElemStr G1ElemStr;
52 FqElem and FqElemStr, FpElem and FpElemStr, EccPointFq and G1ElemStr,
157 void* EFqSerialize(G1ElemStr* dest, EccPointFq const* src);
165 void const* EFqDeserialize(EccPointFq* dest, G1ElemStr const* src);
  /external/epid-sdk/epid/member/tiny/unittests/
member-testhelper.h 35 typedef struct G1ElemStr G1ElemStr;
38 /// compares G1ElemStr values
39 bool operator==(G1ElemStr const& lhs, G1ElemStr const& rhs);
  /external/epid-sdk/epid/member/unittests/
member-testhelper.h 35 typedef struct G1ElemStr G1ElemStr;
36 /// compares G1ElemStr values
37 bool operator==(G1ElemStr const& lhs, G1ElemStr const& rhs);
  /external/epid-sdk/epid/verifier/src/
nrverify.c 36 G1ElemStr g1; //!< Generator of G1 (512-bit)
37 G1ElemStr b; //!< (element of G1): part of basic signature Sigma0
38 G1ElemStr k; //!< (element of G1): part of basic signature Sigma0
39 G1ElemStr bp; //!< (element of G1): one entry in SigRL
40 G1ElemStr kp; //!< (element of G1): one entry in SigRL
41 G1ElemStr t; //!< element of G1
42 G1ElemStr r1; //!< element of G1
43 G1ElemStr r2; //!< element of G1
82 G1ElemStr const* b = &sig->B;
83 G1ElemStr const* k = &sig->K
    [all...]
  /external/epid-sdk/epid/common-testhelper/
epid_params-testhelper.h 66 static const G1ElemStr g1_str_;
ecpoint_wrapper-testhelper.h 50 EcPointObj(EcGroupObj* group, G1ElemStr const& bytes);
  /external/epid-sdk/epid/common-testhelper/unittests/
ecpoint_wrapper-test.cc 39 static const G1ElemStr group_str_1;
40 static const G1ElemStr group_str_2;
43 const G1ElemStr EcPointObjTest::group_str_1 = {
51 const G1ElemStr EcPointObjTest::group_str_2 = {

Completed in 388 milliseconds

1 2 3