Skip to content

Commit 668ea44

Browse files
authored
Merge pull request #8 from daira/doc-sapling-crypto
Document that the Sapling implementation is in the `sapling-crypto` crate, not `zcash_primitives`
2 parents 1ab2f34 + 63c5231 commit 668ea44

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ Orchard protocols. It provides reusable methods that implement common note encry
55
and trial decryption logic, and enforce protocol-agnostic verification requirements.
66

77
Protocol-specific logic is handled via the `Domain` trait. Implementations of this
8-
trait are provided in the [`zcash_primitives`] (for Sapling) and [`orchard`] crates;
9-
users with their own existing types can similarly implement the trait themselves.
8+
trait are provided in the [`sapling-crypto`] and [`orchard`] crates; users with their
9+
own existing types can similarly implement the trait themselves.
1010

1111
[in-band secret distribution scheme]: https://zips.z.cash/protocol/protocol.pdf#saplingandorchardinband
12-
[`zcash_primitives`]: https://crates.io/crates/zcash_primitives
12+
[`sapling-crypto`]: https://crates.io/crates/sapling-crypto
1313
[`orchard`]: https://crates.io/crates/orchard
1414

1515
## License

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
//! and trial decryption logic, and enforce protocol-agnostic verification requirements.
66
//!
77
//! Protocol-specific logic is handled via the [`Domain`] trait. Implementations of this
8-
//! trait are provided in the [`zcash_primitives`] (for Sapling) and [`orchard`] crates;
9-
//! users with their own existing types can similarly implement the trait themselves.
8+
//! trait are provided in the [`sapling-crypto`] and [`orchard`] crates; users with their
9+
//! own existing types can similarly implement the trait themselves.
1010
//!
1111
//! [in-band secret distribution scheme]: https://zips.z.cash/protocol/protocol.pdf#saplingandorchardinband
12-
//! [`zcash_primitives`]: https://crates.io/crates/zcash_primitives
12+
//! [`sapling-crypto`]: https://crates.io/crates/sapling-crypto
1313
//! [`orchard`]: https://crates.io/crates/orchard
1414
1515
#![no_std]

0 commit comments

Comments
 (0)