Merge pull request #17 from ZcashFoundation/rename

Rename to just `redjubjub`.
This commit is contained in:
Henry de Valence 2019-12-09 13:54:55 -08:00 committed by GitHub
commit 5be929559b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 8 deletions

View File

@ -1,14 +1,14 @@
[package]
name = "redjubjub-zebra"
name = "redjubjub"
edition = "2018"
version = "0.1.0"
authors = ["Henry de Valence <hdevalence@hdevalence.ca>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ZcashFoundation/redjubjub-zebra"
repository = "https://github.com/ZcashFoundation/redjubjub"
categories = ["cryptography", "zcash"]
keywords = ["cryptography", "crypto", "jubjub", "redjubjub", "zcash", "zebra"]
description = ["A mostly-standalone implementation of the RedJubjub signature scheme"]
description = "A mostly-standalone implementation of the RedJubjub signature scheme."
[package.metadata.docs.rs]
features = ["nightly"]

View File

@ -18,7 +18,7 @@ signature:
```
# use std::convert::TryFrom;
use rand::thread_rng;
use redjubjub_zebra::*;
use redjubjub::*;
let msg = b"Hello!";
@ -48,4 +48,4 @@ cargo doc --features "nightly" --open
[redjubjub]: https://zips.z.cash/protocol/protocol.pdf#concretereddsa
[zebra]: https://github.com/ZcashFoundation/zebra
[refinement]: https://en.wikipedia.org/wiki/Refinement_type
[sealed]: https://rust-lang.github.io/api-guidelines/future-proofing.html#sealed-traits-protect-against-downstream-implementations-c-sealed
[sealed]: https://rust-lang.github.io/api-guidelines/future-proofing.html#sealed-traits-protect-against-downstream-implementations-c-sealed

View File

@ -2,7 +2,7 @@ use std::convert::TryFrom;
use proptest::prelude::*;
use redjubjub_zebra::*;
use redjubjub::*;
proptest! {
#[test]

View File

@ -3,7 +3,7 @@ use std::convert::TryFrom;
#[macro_use]
extern crate lazy_static;
use redjubjub_zebra::*;
use redjubjub::*;
#[test]
fn verify_librustzcash_spendauth() {

View File

@ -3,7 +3,7 @@ use std::convert::TryFrom;
use proptest::prelude::*;
use rand_core::{CryptoRng, RngCore};
use redjubjub_zebra::*;
use redjubjub::*;
/// A signature test-case, containing signature data and expected validity.
#[derive(Clone, Debug)]