forked from sigstore/sigstore-rs
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added implementations for Merkle proofs.
Relates to: sigstore#283 Signed-off-by: Victor Embacher <[email protected]>
- Loading branch information
Showing
12 changed files
with
1,553 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pub mod proof_verification; | ||
pub mod rfc6962; | ||
|
||
pub use proof_verification::MerkleProofError; | ||
pub(crate) use proof_verification::MerkleProofVerifier; | ||
pub(crate) use rfc6962::{Rfc6269Default, Rfc6269HasherTrait}; |
Oops, something went wrong.