redjubjub/src/error.rs

16 lines
503 B
Rust
Raw Normal View History

2019-12-02 21:36:47 -08:00
use thiserror::Error;
/// An error related to RedJubJub signatures.
2019-12-03 22:32:30 -08:00
#[derive(Error, Debug, Copy, Clone, Eq, PartialEq)]
2019-12-02 21:36:47 -08:00
pub enum Error {
/// The encoding of a signing key was malformed.
#[error("Malformed signing key encoding.")]
MalformedSigningKey,
/// The encoding of a verification key was malformed.
#[error("Malformed verification key encoding.")]
MalformedVerificationKey,
2019-12-03 22:32:30 -08:00
/// Signature verification failed.
#[error("Invalid signature.")]
InvalidSignature,
2019-12-02 21:36:47 -08:00
}