| 140 | /// Error returned when parsing an unknown algorithm name. |
| 141 | #[derive(Debug, Clone, PartialEq, Eq)] |
| 142 | pub struct AlgorithmParseError(pub String); |
| 143 | |
| 144 | impl fmt::Display for AlgorithmParseError { |
| 145 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |