Fix merge
This commit is contained in:
parent
89989e02a3
commit
6c4ae5333a
2 changed files with 6 additions and 6 deletions
|
@ -116,5 +116,5 @@
|
|||
|
||||
### Changed
|
||||
|
||||
- Added experimental [`zip::unstable::write::FileOptions::with_deprecated_encryption`] API to enable encrypting files
|
||||
with PKWARE encryption.
|
||||
- Added experimental [`zip_next::unstable::write::FileOptions::with_deprecated_encryption`] API to enable encrypting
|
||||
files with PKWARE encryption.
|
||||
|
|
|
@ -23,19 +23,19 @@ use std::io::Read;
|
|||
#[test]
|
||||
fn encrypting_file() {
|
||||
use std::io::{Read, Write};
|
||||
use zip::unstable::write::FileOptionsExt;
|
||||
use zip_next::unstable::write::FileOptionsExt;
|
||||
let mut buf = vec![0; 2048];
|
||||
let mut archive = zip::write::ZipWriter::new(Cursor::new(&mut buf));
|
||||
let mut archive = zip_next::write::ZipWriter::new(Cursor::new(&mut buf));
|
||||
archive
|
||||
.start_file(
|
||||
"name",
|
||||
zip::write::FileOptions::default().with_deprecated_encryption(b"password"),
|
||||
zip_next::write::FileOptions::default().with_deprecated_encryption(b"password"),
|
||||
)
|
||||
.unwrap();
|
||||
archive.write_all(b"test").unwrap();
|
||||
archive.finish().unwrap();
|
||||
drop(archive);
|
||||
let mut archive = zip::ZipArchive::new(Cursor::new(&mut buf)).unwrap();
|
||||
let mut archive = zip_next::ZipArchive::new(Cursor::new(&mut buf)).unwrap();
|
||||
let mut file = archive.by_index_decrypt(0, b"password").unwrap().unwrap();
|
||||
let mut buf = Vec::new();
|
||||
file.read_to_end(&mut buf).unwrap();
|
||||
|
|
Loading…
Add table
Reference in a new issue