add missing documentation

This commit is contained in:
Lireer 2020-10-14 16:26:39 +02:00
parent 48b52a7e86
commit 8f352c30f1
2 changed files with 6 additions and 0 deletions

View file

@ -62,6 +62,11 @@ impl<R: Read> AesReader<R> {
/// password was provided.
/// It isn't possible to check the authentication code in this step. This will be done after
/// reading and decrypting the file.
///
/// # Returns
///
/// If the password verification failed `Ok(None)` will be returned to match the validate
/// method of ZipCryptoReader.
pub fn validate(mut self, password: &[u8]) -> io::Result<Option<AesReaderValid<R>>> {
let salt_length = self.aes_mode.salt_length();
let key_length = self.aes_mode.key_length();

View file

@ -132,6 +132,7 @@ where
}
}
/// This trait allows using generic AES ciphers with different key sizes.
pub trait AesCipher {
fn crypt_in_place(&mut self, target: &mut [u8]);
}