Files
voprf-vx/README.md
T

40 lines
1.2 KiB
Markdown
Raw Normal View History

# voprf
2021-09-09 01:56:54 -07:00
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-vx/) along with an example for usage.
2021-09-20 00:17:53 -07:00
Installation
------------
Add the following line to the dependencies of your `Cargo.toml`:
```
voprf = { package = "voprf-vx", version = "1.0.0-pre.0" }
2021-09-20 00:17:53 -07:00
```
### Minimum Supported Rust Version
Rust **1.87** or higher.
2021-09-20 00:17:53 -07:00
Contributors
------------
This is a fork of [facebook/voprf](https://github.com/facebook/voprf/) maintained by [VexaHub](https://github.com/vexahub).
The original author 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.