redjubjub/src/error.rs

26 lines
756 B
Rust
Raw Normal View History

// -*- mode: rust; -*-
//
// This file is part of redjubjub.
// Copyright (c) 2019-2021 Zcash Foundation
// See LICENSE for licensing information.
//
// Authors:
// - Deirdre Connolly <deirdre@zfnd.org>
// - Henry de Valence <hdevalence@hdevalence.ca>
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
}