commit | 8a1bc2e67b1625836e3d251e25816ddef25b75ae | [log] [tgz] |
---|---|---|
author | Sadaf Ebrahimi <[email protected]> | Thu Jan 16 15:36:59 2025 -0800 |
committer | Automerger Merge Worker <[email protected]> | Thu Jan 16 15:36:59 2025 -0800 |
tree | 71505ca3f6266aede83932d60518fb90edf3e38a | |
parent | 46618bed5fe6d0e95a4a32dd8c2b026588ac9430 [diff] | |
parent | 32964de3adf14dab6cee1a8ec3ac27f384ec592f [diff] |
Update METADATA file am: 32964de3ad Original change: https://android-review.googlesource.com/c/platform/external/anonymous-counting-tokens/+/3454910 Change-Id: I86818e4afea4d4f5e4a911660e9156f57b3476af Signed-off-by: Automerger Merge Worker <[email protected]>
An anonymous counting token (ACT) scheme allows Clients to obtain blind signatures or MACs (aka tokens) on messages of their choice, while at the same time enabling Issuers to enforce rate limits on the number of tokens that a client can obtain for each message. Specifically,
This repository implements a variant of the scheme described in [1], which is secure in the random oracle model under the q-DDHI assumption (in a cyclic group) and the DCR assumption. The variant implemented here relaxes the proven soundness guarantee to the non-concurrent setting. It also assumes that the server generates its parameters correctly. Future versions will support server proofs for correct parameter generation.
This implementation also supports batched token issuance. Batched token issuance can have significant performance benefits as compared to individual token issuance.
[1] “Anonymous Counting Tokens.” Fabrice Benhamouda, Mariana Raykova, Karn Seth.
This repository requires Bazel. You can install Bazel by following the instructions for your platform on the Bazel website.
Once you have installed Bazel you can clone this repository and run all tests that are included by navigating into the root folder and running:
bazel test //...
This is not an officially supported Google product. The code is provided as-is, with no guarantees of correctness or security.