pub struct KeyUsage { /* private fields */ }Expand description
An extension consisting of a list of names of the permitted key usages.
Implementations§
Source§impl KeyUsage
impl KeyUsage
Sourcepub fn critical(&mut self) -> &mut KeyUsage
pub fn critical(&mut self) -> &mut KeyUsage
Sets the critical flag to true. The extension will be critical.
Sourcepub fn digital_signature(&mut self) -> &mut KeyUsage
pub fn digital_signature(&mut self) -> &mut KeyUsage
Sets the digitalSignature flag to true.
Sourcepub fn non_repudiation(&mut self) -> &mut KeyUsage
pub fn non_repudiation(&mut self) -> &mut KeyUsage
Sets the nonRepudiation flag to true.
Sourcepub fn key_encipherment(&mut self) -> &mut KeyUsage
pub fn key_encipherment(&mut self) -> &mut KeyUsage
Sets the keyEncipherment flag to true.
Sourcepub fn data_encipherment(&mut self) -> &mut KeyUsage
pub fn data_encipherment(&mut self) -> &mut KeyUsage
Sets the dataEncipherment flag to true.
Sourcepub fn key_agreement(&mut self) -> &mut KeyUsage
pub fn key_agreement(&mut self) -> &mut KeyUsage
Sets the keyAgreement flag to true.
Sourcepub fn key_cert_sign(&mut self) -> &mut KeyUsage
pub fn key_cert_sign(&mut self) -> &mut KeyUsage
Sets the keyCertSign flag to true.
Sourcepub fn encipher_only(&mut self) -> &mut KeyUsage
pub fn encipher_only(&mut self) -> &mut KeyUsage
Sets the encipherOnly flag to true.
Sourcepub fn decipher_only(&mut self) -> &mut KeyUsage
pub fn decipher_only(&mut self) -> &mut KeyUsage
Sets the decipherOnly flag to true.
Sourcepub fn build(&self) -> Result<X509Extension, ErrorStack>
pub fn build(&self) -> Result<X509Extension, ErrorStack>
Return the KeyUsage extension as an X509Extension.