pub struct KeyUsage {
pub crl_sign: Option<bool>,
pub data_encipherment: Option<bool>,
pub decipher_only: Option<bool>,
pub digital_signature: Option<bool>,
pub encipher_only: Option<bool>,
pub key_agreement: Option<bool>,
pub key_cert_sign: Option<bool>,
pub key_encipherment: Option<bool>,
pub non_repudiation: Option<bool>,
}
Expand description
Defines one or more purposes for which the key contained in the certificate can be used. Default value for each option is false.
Fields§
§crl_sign: Option<bool>
Key can be used to sign CRLs.
data_encipherment: Option<bool>
Key can be used to decipher data.
decipher_only: Option<bool>
Key can be used only to decipher data.
digital_signature: Option<bool>
Key can be used for digital signing.
encipher_only: Option<bool>
Key can be used only to encipher data.
key_agreement: Option<bool>
Key can be used in a key-agreement protocol.
key_cert_sign: Option<bool>
Key can be used to sign certificates.
key_encipherment: Option<bool>
Key can be used to encipher data.
non_repudiation: Option<bool>
Key can be used for non-repudiation.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for KeyUsage
impl<'de> Deserialize<'de> for KeyUsage
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for KeyUsage
Auto Trait Implementations§
impl Freeze for KeyUsage
impl RefUnwindSafe for KeyUsage
impl Send for KeyUsage
impl Sync for KeyUsage
impl Unpin for KeyUsage
impl UnwindSafe for KeyUsage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more