Skip to content

Commit 03274f2

Browse files
authored
Merge pull request #9 from bandprotocol/ecvrf
ecvrf
2 parents a8fed03 + c276003 commit 03274f2

File tree

8 files changed

+949
-0
lines changed

8 files changed

+949
-0
lines changed

packages/crypto/Cargo.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[package]
2+
name = "owasm-crypto"
3+
version = "0.1.13"
4+
authors = ["Band Protocol <[email protected]>"]
5+
edition = "2018"
6+
license = "Apache-2.0"
7+
repository = "https://github.com/bandprotocol/owasm/tree/master/packages/crypto"
8+
description = "Cryoto functions for Oracle script"
9+
readme = "README.md"
10+
11+
[dependencies]
12+
hex = "0.4.3"
13+
rust-gmp = "0.5.0"
14+
sha2 = "0.9.5"
15+
sha3 = "0.9.1"
16+
lazy_static = "1.4.0"

packages/crypto/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Owasm Crypto
2+
3+
[![owasm-crypto on crates.io](https://img.shields.io/crates/v/owasm-crypto.svg)](https://crates.io/crates/owasm-crypto)
4+
5+
This crate contains cryptography-related functions which are available for owasm `oei` library.
6+
7+
## Implementations
8+
- `ecvrf_verify()`: Signature verification on a vrf proof

0 commit comments

Comments
 (0)