(context: &str)
| 99 | use super::*; |
| 100 | |
| 101 | pub fn not_found(context: &str) -> io::Error { |
| 102 | invalid_data(format!("No private key found in {context}")) |
| 103 | } |
| 104 | |
| 105 | pub fn parse_failed(e: impl Display) -> io::Error { |
| 106 | invalid_data(format!("Failed to parse private key: {e}")) |
no test coverage detected