mirror of
https://github.com/arnaucube/babyjubjub-ark.git
synced 2026-01-13 17:21:29 +01:00
add travis & crate config
This commit is contained in:
9
.travis.yml
Normal file
9
.travis.yml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
language: rust
|
||||||
|
rust:
|
||||||
|
- stable
|
||||||
|
|
||||||
|
cache:
|
||||||
|
- cargo
|
||||||
|
|
||||||
|
script:
|
||||||
|
- RUST_BACKTRACE=1 cargo test --all
|
||||||
@@ -1,8 +1,10 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "babyjubjub-rs"
|
name = "babyjubjub-rs"
|
||||||
version = "0.1.0"
|
version = "0.0.1"
|
||||||
authors = ["arnaucube <root@arnaucube.com>"]
|
authors = ["arnaucube <root@arnaucube.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
license = "GPL-3.0"
|
||||||
|
description = "BabyJubJub elliptic curve implementation"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
num = "0.2.0"
|
num = "0.2.0"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# babyjubjub-rs
|
# babyjubjub-rs [](https://crates.io/crates/babyjubjub-rs) [](https://travis-ci.org/arnaucube/babyjubjub-rs)
|
||||||
BabyJubJub elliptic curve implementation in Rust
|
BabyJubJub elliptic curve implementation in Rust
|
||||||
|
|
||||||
Uses MiMC7 hash function: https://github.com/arnaucube/mimc-rs
|
Uses MiMC7 hash function: https://github.com/arnaucube/mimc-rs
|
||||||
@@ -8,10 +8,10 @@ Doing this in my free time to get familiar with Rust, do not use in production
|
|||||||
|
|
||||||
- [x] point addition
|
- [x] point addition
|
||||||
- [x] point scalar multiplication
|
- [x] point scalar multiplication
|
||||||
- [ ] {point, pk, signature} compress&decompress parsers
|
|
||||||
- [x] eddsa keys generation
|
- [x] eddsa keys generation
|
||||||
- [x] eddsa signature
|
- [x] eddsa signature
|
||||||
- [x] eddsa signature verification
|
- [x] eddsa signature verification
|
||||||
|
- [ ] {point, pk, signature} compress&decompress parsers
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user