Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

expose Schnorrkel Error from mc-crypto-keys #3261

Merged
merged 3 commits into from
Mar 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion crypto/keys/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2022 The MobileCoin Foundation
// Copyright (c) 2018-2023 The MobileCoin Foundation

//! A thin wrapper around Dalek libraries for key handling.
//!
Expand Down Expand Up @@ -76,6 +76,7 @@ pub(crate) use base64::engine::general_purpose::STANDARD as BASE64_ENGINE;

pub use digest::Digest;
pub use mc_util_repr_bytes::{typenum::Unsigned, GenericArray, LengthMismatch, ReprBytes};
pub use schnorrkel_og::SignatureError as SchnorrkelError;
pub use signature::{
DigestSigner, DigestVerifier, Error as SignatureError, Signature, Signer, Verifier,
};
Expand Down