diff --git a/src/read.rs b/src/read.rs index a79b0099..97bccd2d 100644 --- a/src/read.rs +++ b/src/read.rs @@ -489,11 +489,7 @@ impl ZipArchive { let data = &mut self.files[file_number]; match (password, data.encrypted) { - (None, true) => { - return Err(ZipError::UnsupportedArchive( - "Password required to decrypt file", - )) - } + (None, true) => return Err(ZipError::UnsupportedArchive(ZipError::PASSWORD_REQUIRED)), (Some(_), false) => password = None, //Password supplied, but none needed! Discard. _ => {} } diff --git a/src/result.rs b/src/result.rs index e8b7d052..5d5ab459 100644 --- a/src/result.rs +++ b/src/result.rs @@ -32,6 +32,21 @@ pub enum ZipError { FileNotFound, } +impl ZipError { + /// The text used as an error when a password is required and not supplied + /// + /// ```rust,no_run + /// # use zip::result::ZipError; + /// # let mut archive = zip::ZipArchive::new(std::io::Cursor::new(&[])).unwrap(); + /// match archive.by_index(1) { + /// Err(ZipError::UnsupportedArchive(ZipError::PASSWORD_REQUIRED)) => eprintln!("a password is needed to unzip this file"), + /// _ => (), + /// } + /// # () + /// ``` + pub const PASSWORD_REQUIRED: &'static str = "Password required to decrypt file"; +} + impl From for io::Error { fn from(err: ZipError) -> io::Error { io::Error::new(io::ErrorKind::Other, err) diff --git a/tests/zip_crypto.rs b/tests/zip_crypto.rs index cae6b1f3..6c4d6b81 100644 --- a/tests/zip_crypto.rs +++ b/tests/zip_crypto.rs @@ -47,9 +47,9 @@ fn encrypted_file() { // No password let file = archive.by_index(0); match file { - Err(zip::result::ZipError::UnsupportedArchive("Password required to decrypt file")) => { - () - } + Err(zip::result::ZipError::UnsupportedArchive( + zip::result::ZipError::PASSWORD_REQUIRED, + )) => (), Err(_) => panic!( "Expected PasswordRequired error when opening encrypted file without password" ),