update crypto dependencies

This commit is contained in:
Lireer 2020-11-09 17:04:45 +01:00 committed by Lireer
parent c5e55c04fd
commit 09ad713d20
2 changed files with 5 additions and 5 deletions

View file

@ -11,15 +11,15 @@ Library to support the reading and writing of zip files.
edition = "2018" edition = "2018"
[dependencies] [dependencies]
aes = { version = "0.5.0", optional = true } aes = { version = "0.6.0", optional = true }
byteorder = "1.3" byteorder = "1.3"
bzip2 = { version = "0.4", optional = true } bzip2 = { version = "0.4", optional = true }
constant_time_eq = { version = "0.1.5", optional = true } constant_time_eq = { version = "0.1.5", optional = true }
crc32fast = "1.0" crc32fast = "1.0"
flate2 = { version = "1.0.0", default-features = false, optional = true } flate2 = { version = "1.0.0", default-features = false, optional = true }
hmac = {version = "0.9.0", optional = true } hmac = {version = "0.10.1", optional = true }
pbkdf2 = {version = "0.5.0", optional = true } pbkdf2 = {version = "0.6.0", optional = true }
sha-1 = {version = "0.9.1", optional = true } sha-1 = {version = "0.9.2", optional = true }
thiserror = "1.0" thiserror = "1.0"
time = { version = "0.1", optional = true } time = { version = "0.1", optional = true }

View file

@ -4,7 +4,7 @@
//! different byte order (little endian) than NIST (big endian). //! different byte order (little endian) than NIST (big endian).
//! See [AesCtrZipKeyStream](./struct.AesCtrZipKeyStream.html) for more information. //! See [AesCtrZipKeyStream](./struct.AesCtrZipKeyStream.html) for more information.
use aes::block_cipher::generic_array::GenericArray; use aes::cipher::generic_array::GenericArray;
use aes::{BlockCipher, NewBlockCipher}; use aes::{BlockCipher, NewBlockCipher};
use byteorder::WriteBytesExt; use byteorder::WriteBytesExt;
use std::{any, fmt}; use std::{any, fmt};