2021-09-09 01:56:54 -07:00
# voprf 
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.
2024-01-11 11:58:36 -08:00
This implementation is based on [RFC 9497 ](https://www.rfc-editor.org/rfc/rfc9497 ).
2021-09-20 00:17:53 -07:00
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` :
```
2026-04-06 13:33:53 -07:00
voprf = "0.6.0-pre.1"
2021-09-20 00:17:53 -07:00
```
### Minimum Supported Rust Version
2026-04-06 13:33:53 -07:00
Rust **1.85** 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.