Enum security_framework::os::macos::encrypt_transform::Padding
[−]
[src]
pub enum Padding { None, Pkcs1, Pkcs5, Pkcs7, Oaep, }
The padding scheme to use for encryption.
Variants
None
Do not pad.
Pkcs1
Use PKCS#1 padding.
Pkcs5
Use PKCS#5 padding.
Pkcs7
Use PKCS#7 padding.
Oaep
Use OAEP padding.
Requires the OSX_10_8
(or greater) feature.
Trait Implementations
impl Debug for Padding
[src]
impl Copy for Padding
[src]
impl Clone for Padding
[src]
fn clone(&self) -> Padding
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more