Struct security_framework::key::GenerateKeyOptions

source ·
pub struct GenerateKeyOptions {
    pub key_type: Option<KeyType>,
    pub size_in_bits: Option<u32>,
    pub label: Option<String>,
    pub token: Option<Token>,
    pub location: Option<Location>,
    pub access_control: Option<SecAccessControl>,
}
Expand description

Helper for creating CFDictionary attributes for SecKey::generate Recommended reading: https://developer.apple.com/documentation/technotes/tn3137-on-mac-keychains

Fields§

§key_type: Option<KeyType>

kSecAttrKeyType

§size_in_bits: Option<u32>

kSecAttrKeySizeInBits

§label: Option<String>

kSecAttrLabel

§token: Option<Token>

kSecAttrTokenID

§location: Option<Location>

Which keychain to store the key in, if any.

§access_control: Option<SecAccessControl>

Access control

Implementations§

source§

impl GenerateKeyOptions

source

pub fn set_key_type(&mut self, key_type: KeyType) -> &mut Self

Set key_type

source

pub fn set_size_in_bits(&mut self, size_in_bits: u32) -> &mut Self

Set size_in_bits

source

pub fn set_label(&mut self, label: impl Into<String>) -> &mut Self

Set label

source

pub fn set_token(&mut self, token: Token) -> &mut Self

Set token

source

pub fn set_location(&mut self, location: Location) -> &mut Self

Set location

source

pub fn set_access_control( &mut self, access_control: SecAccessControl ) -> &mut Self

Set access_control

source

pub fn to_dictionary(&self) -> CFDictionary

Collect options into a CFDictioanry

Trait Implementations§

source§

impl Default for GenerateKeyOptions

source§

fn default() -> GenerateKeyOptions

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.