fuzzytags/README.md

13 lines
839 B
Markdown
Raw Normal View History

2021-01-29 21:49:52 +00:00
# fuzzymetatag
2021-01-29 21:52:34 +00:00
Experimental Rust implementation of https://eprint.iacr.org/2021/089 using Ristretto.
2021-01-30 02:24:27 +00:00
A tag is a probabilistic cryptographic structure. When constructed for a given FuzzyMetaPublicKey it will pass the FuzzyMetaDetectionKey::test 100% of the time. For other public keys it will pass the test with probability gamma related to the security parameter of the system. This system provides the following security properties:
* Correctness: Valid tags for a public key for a key pair always validate when tested against the secret key
* Fuzziness: Invalid matches should produce false positives with probability p related to the security property (γ)
* Security: An adversarial server with access to Test oracle (i.e. the detection key) is unable to distinguish false positives from true positives. (Detection Ambiguity)
2021-01-29 21:52:34 +00:00