Document possible panics

This commit is contained in:
Lireer 2020-10-14 15:36:23 +02:00
parent 5532fd6f09
commit 5f0ae55eae
2 changed files with 14 additions and 0 deletions

View file

@ -17,6 +17,11 @@ const AUTH_CODE_LENGTH: usize = 10;
/// The number of iterations used with PBKDF2 /// The number of iterations used with PBKDF2
const ITERATION_COUNT: u32 = 1000; const ITERATION_COUNT: u32 = 1000;
/// Create a AesCipher depending on the used `AesMode` and the given `key`.
///
/// # Panics
///
/// This panics if `key` doesn't have the correct size for the chosen aes mode.
fn cipher_from_mode(aes_mode: AesMode, key: &[u8]) -> Box<dyn aes_ctr::AesCipher> { fn cipher_from_mode(aes_mode: AesMode, key: &[u8]) -> Box<dyn aes_ctr::AesCipher> {
match aes_mode { match aes_mode {
AesMode::Aes128 => Box::new(aes_ctr::AesCtrZipKeyStream::<aes_ctr::Aes128>::new(key)) AesMode::Aes128 => Box::new(aes_ctr::AesCtrZipKeyStream::<aes_ctr::Aes128>::new(key))
@ -127,6 +132,11 @@ impl<R: Read> AesReader<R> {
} }
} }
/// A reader for aes encrypted files, which has already passed the first password check.
///
/// There is a 1 in 65536 chance that an invalid password passes that check.
/// After the data has been read and decrypted an HMAC will be checked and provide a final means
/// to check if either the password is invalid or if the data has been changed.
pub struct AesReaderValid<R: Read> { pub struct AesReaderValid<R: Read> {
reader: R, reader: R,
data_remaining: u64, data_remaining: u64,

View file

@ -85,6 +85,10 @@ where
C::Cipher: NewBlockCipher, C::Cipher: NewBlockCipher,
{ {
/// Creates a new zip variant AES-CTR key stream. /// Creates a new zip variant AES-CTR key stream.
///
/// # Panics
///
/// This panics if `key` doesn't have the correct size for cipher `C`.
pub fn new(key: &[u8]) -> AesCtrZipKeyStream<C> { pub fn new(key: &[u8]) -> AesCtrZipKeyStream<C> {
AesCtrZipKeyStream { AesCtrZipKeyStream {
counter: 1, counter: 1,