(e: impl Display)
| 107 | } |
| 108 | |
| 109 | pub fn parse_encrypted_failed(e: impl Display) -> io::Error { |
| 110 | invalid_data(format!("Failed to parse encrypted private key: {e}")) |
| 111 | } |
| 112 | |
| 113 | pub fn decrypt_failed(e: impl Display) -> io::Error { |
| 114 | io::Error::other(format!( |
no test coverage detected