code review

This commit is contained in:
Arnaud Gourlay 2024-05-23 08:25:25 +02:00
parent 985d3a7809
commit 6da1faa4f1
No known key found for this signature in database
GPG key ID: 8119C2F38355E359
3 changed files with 19 additions and 8 deletions

View file

@ -125,12 +125,12 @@ impl<R: Read> AesReader<R> {
})
}
/// Read the AES header bytes and returns the key and salt.
/// Read the AES header bytes and returns the verification value and salt.
///
/// # Returns
///
/// the key and the salt
pub fn get_key_and_salt(mut self) -> io::Result<(Vec<u8>, Vec<u8>)> {
/// the verification value and the salt
pub fn get_verification_value_and_salt(mut self) -> io::Result<(Vec<u8>, Vec<u8>)> {
let salt_length = self.aes_mode.salt_length();
let mut salt = vec![0; salt_length];

View file

@ -645,8 +645,16 @@ impl<R: Read + Seek> ZipArchive<R> {
Ok(shared)
}
/// Returns key and salt
pub fn get_aes_key_and_salt(
/// Returns the verification value and salt for the AES encryption of the file
///
/// It fails if the file is not encrypted or if the file number is invalid.
///
/// # Returns
///
/// - Some with the verification value and the salt
/// - None if the file is not encrypted with AES
#[cfg(feature = "aes-crypto")]
pub fn get_aes_verification_key_and_salt(
&mut self,
file_number: usize,
) -> ZipResult<Option<(AesMode, Vec<u8>, Vec<u8>)>> {
@ -657,15 +665,14 @@ impl<R: Read + Seek> ZipArchive<R> {
.ok_or(ZipError::FileNotFound)?;
if !data.encrypted {
return Err(ZipError::UnsupportedArchive(ZipError::PASSWORD_REQUIRED));
return Err(ZipError::UnsupportedArchive(ZipError::ARCHIVE_NOT_ENCRYPTED));
}
let limit_reader = find_content(data, &mut self.reader)?;
match data.aes_mode {
None => Ok(None),
Some((aes_mode, _, _)) => {
let (key, salt) = AesReader::new(limit_reader, aes_mode, data.compressed_size)
.get_key_and_salt()
.expect("AES reader failed");
.get_verification_value_and_salt()?;
Ok(Some((aes_mode, key, salt)))
}
}

View file

@ -46,6 +46,10 @@ impl ZipError {
/// # ()
/// ```
pub const PASSWORD_REQUIRED: &'static str = "Password required to decrypt file";
/// The text used as an error when the archive is not encrypted
pub const ARCHIVE_NOT_ENCRYPTED: &'static str = "the archive is not encrypted";
}
impl From<ZipError> for io::Error {