pub trait FileOptionsExt {
    // Required method
    fn with_deprecated_encryption(self, password: &[u8]) -> Self;
}
Expand description

Unstable methods for FileOptions.

Required Methods§

source

fn with_deprecated_encryption(self, password: &[u8]) -> Self

Write the file with the given password using the deprecated ZipCrypto algorithm.

This is not recommended for new archives, as ZipCrypto is not secure.

Implementors§