From 76777350da12b4ed6ed142ccb47fa2b6647fc481 Mon Sep 17 00:00:00 2001 From: Benjamin Richner Date: Tue, 23 Jun 2020 21:22:47 +0200 Subject: [PATCH] Add space between comment and `//` --- src/zipcrypto.rs | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/zipcrypto.rs b/src/zipcrypto.rs index d6d231f3..c005a9a4 100644 --- a/src/zipcrypto.rs +++ b/src/zipcrypto.rs @@ -7,8 +7,8 @@ struct ZipCryptoKeys { } impl ZipCryptoKeys { - //Used this paper to implement ZipCrypto algo - //https://courses.cs.ut.ee/MTAT.07.022/2015_fall/uploads/Main/dmitri-report-f15-16.pdf + // Used this paper to implement ZipCrypto algo + // https://courses.cs.ut.ee/MTAT.07.022/2015_fall/uploads/Main/dmitri-report-f15-16.pdf fn new() -> ZipCryptoKeys { ZipCryptoKeys { @@ -55,19 +55,19 @@ pub struct ZipCryptoReader { impl ZipCryptoReader { pub fn new(file: R, password: &[u8]) -> ZipCryptoReader { - //Note: The password is &[u8] and not &str because the documentation - //https://pkware.cachefly.net/webdocs/APPNOTE/APPNOTE-6.3.3.TXT - //does not specify password encoding (see function update_keys) - //Therefore, if &str was used, the password would be UTF-8 and it - //would be impossible to decrypt files that were encrypted with a - //password byte sequence that is unrepresentable in UTF-8. + // Note: The password is &[u8] and not &str because the documentation + // https://pkware.cachefly.net/webdocs/APPNOTE/APPNOTE-6.3.3.TXT + // does not specify password encoding (see function update_keys) + // Therefore, if &str was used, the password would be UTF-8 and it + // would be impossible to decrypt files that were encrypted with a + // password byte sequence that is unrepresentable in UTF-8. let mut result = ZipCryptoReader { file: file, keys: ZipCryptoKeys::new(), }; - //Key the cipher by updating the keys with the password + // Key the cipher by updating the keys with the password for byte in password.iter() { result.keys.update(*byte); } @@ -75,12 +75,12 @@ impl ZipCryptoReader { result } - ///Read the ZipCrypto header bytes and validate the password + /// Read the ZipCrypto header bytes and validate the password pub fn validate( mut self, crc32_plaintext: u32, ) -> Result>, std::io::Error> { - //ZipCrypto prefixes a file with a 12 byte header + // ZipCrypto prefixes a file with a 12 byte header let mut header_buf = [0u8; 12]; self.file.read_exact(&mut header_buf)?; for byte in header_buf.iter_mut() { @@ -92,7 +92,7 @@ impl ZipCryptoReader { // We also use 1 byte CRC. if (crc32_plaintext >> 24) as u8 != header_buf[11] { - return Ok(None); //Wrong password + return Ok(None); // Wrong password } Ok(Some(ZipCryptoReaderValid { reader: self })) } @@ -104,8 +104,8 @@ pub struct ZipCryptoReaderValid { impl std::io::Read for ZipCryptoReaderValid { fn read(&mut self, mut buf: &mut [u8]) -> std::io::Result { - //Note: There might be potential for optimization. Inspiration can be found at: - //https://github.com/kornelski/7z/blob/master/CPP/7zip/Crypto/ZipCrypto.cpp + // Note: There might be potential for optimization. Inspiration can be found at: + // https://github.com/kornelski/7z/blob/master/CPP/7zip/Crypto/ZipCrypto.cpp let result = self.reader.file.read(&mut buf); for byte in buf.iter_mut() {