Home
last modified time | relevance | path

Searched refs:with_deprecated_encryption (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/zip/src/
Dunstable.rs13 fn with_deprecated_encryption(self, password: &[u8]) -> Self; in with_deprecated_encryption() method
16 fn with_deprecated_encryption(self, password: &[u8]) -> Self { in with_deprecated_encryption() method
17 self.with_deprecated_encryption(password) in with_deprecated_encryption()
Dwrite.rs193 pub(crate) fn with_deprecated_encryption(mut self, password: &[u8]) -> FileOptions { in with_deprecated_encryption() method
/aosp_15_r20/external/rust/android-crates-io/crates/zip/
DCHANGELOG.md11 - Added experimental [`zip::unstable::write::FileOptions::with_deprecated_encryption`] API to enabl…
/aosp_15_r20/external/rust/android-crates-io/crates/zip/tests/
Dzip_crypto.rs29 …archive.start_file("name", zip::write::FileOptions::default().with_deprecated_encryption(b"passwor… in encrypting_file()