123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- #ifndef EPID_MEMBER_TPM2_COMMIT_H_
- #define EPID_MEMBER_TPM2_COMMIT_H_
- #include <stddef.h>
- #include "epid/common/errors.h"
- #include "epid/common/stdtypes.h"
- typedef struct Tpm2Ctx Tpm2Ctx;
- typedef struct FfElement FfElement;
- typedef struct EcPoint EcPoint;
- EpidStatus Tpm2Commit(Tpm2Ctx* ctx, EcPoint const* p1, void const* s2,
- size_t s2_len, FfElement const* y2, EcPoint* k,
- EcPoint* l, EcPoint* e, uint16_t* counter);
- #endif
|