-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy patherror.rs
86 lines (76 loc) · 2.64 KB
/
error.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
//! Signature error copied directly from RustCrypto's opaque signature error at
//! https://github.com/RustCrypto/traits/tree/master/signature
#[cfg(feature = "alloc")]
use alloc::boxed::Box;
use core::fmt::{self, Debug, Display};
/// Signature errors.
///
/// This type is deliberately opaque as to avoid sidechannel leakage which
/// could potentially be used recover signing private keys or forge signatures
/// (e.g. [BB'06]).
///
/// When the `std` feature is enabled, it impls [`core::error::Error`].
///
/// When the `alloc` feature is enabled, it supports an optional
/// [`core::error::Error::source`], which can be used by things like remote
/// signers (e.g. HSM, KMS) to report I/O or auth errors.
///
/// [BB'06]: https://en.wikipedia.org/wiki/Daniel_Bleichenbacher
#[derive(Default)]
#[non_exhaustive]
pub struct Error {
/// Source of the error (if applicable).
#[cfg(feature = "std")]
source: Option<Box<dyn core::error::Error + Send + Sync + 'static>>,
}
impl Error {
/// Create a new error with an associated source.
///
/// **NOTE:** The "source" should **NOT** be used to propagate cryptographic
/// errors e.g. signature parsing or verification errors. The intended use
/// cases are for propagating errors related to external signers, e.g.
/// communication/authentication errors with HSMs, KMS, etc.
#[cfg(feature = "std")]
pub fn from_source(
source: impl Into<Box<dyn core::error::Error + Send + Sync + 'static>>,
) -> Self {
Self {
source: Some(source.into()),
}
}
}
impl Debug for Error {
#[cfg(not(feature = "std"))]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str("signature::Error {}")
}
#[cfg(feature = "std")]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str("signature::Error { source: ")?;
if let Some(source) = &self.source {
write!(f, "Some({})", source)?;
} else {
f.write_str("None")?;
}
f.write_str(" }")
}
}
impl Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str("signature error")
}
}
#[cfg(feature = "std")]
impl From<Box<dyn core::error::Error + Send + Sync + 'static>> for Error {
fn from(source: Box<dyn core::error::Error + Send + Sync + 'static>) -> Error {
Self::from_source(source)
}
}
#[cfg(feature = "std")]
impl core::error::Error for Error {
fn source(&self) -> Option<&(dyn core::error::Error + 'static)> {
self.source
.as_ref()
.map(|source| source.as_ref() as &(dyn core::error::Error + 'static))
}
}