Files
voprf-vx/README.md
T

38 lines
1.1 KiB
Markdown
Raw Normal View History

2021-09-09 01:56:54 -07:00
# voprf ![Build Status](https://github.com/novifinancial/voprf/workflows/Rust%20CI/badge.svg)
An implementation of a (verifiable) oblivious pseudorandom function (VOPRF)
2021-09-20 00:17:53 -07:00
A VOPRF is a verifiable oblivious pseudorandom function, a protocol between a client and a server. The regular (non-verifiable) OPRF is also supported in this implementation.
This implementation is based on the [Internet Draft for VOPRF](https://github.com/cfrg/draft-irtf-cfrg-voprf).
Documentation
-------------
The API can be found [here](https://docs.rs/voprf/) along with an example for usage.
Installation
------------
Add the following line to the dependencies of your `Cargo.toml`:
```
2023-07-24 20:45:18 -07:00
voprf = "0.5.0-pre.6"
2021-09-20 00:17:53 -07:00
```
### Minimum Supported Rust Version
Rust **1.65** or higher.
2021-09-20 00:17:53 -07:00
Contributors
------------
2021-09-28 19:44:57 -07:00
The author of this code is Kevin Lewi ([@kevinlewi](https://github.com/kevinlewi)).
2021-09-20 00:17:53 -07:00
To learn more about contributing to this project, [see this document](./CONTRIBUTING.md).
2021-09-09 01:56:54 -07:00
License
-------
2023-05-22 23:04:39 -07:00
This project is dual-licensed under either the [MIT license](./LICENSE-MIT)
or the [Apache License, Version 2.0](./LICENSE-APACHE).
You may select, at your option, one of the above-listed licenses.