Struct security_framework::import_export::ImportedIdentity [] [src]

pub struct ImportedIdentity {
    pub label: String,
    pub key_id: Vec<u8>,
    pub trust: SecTrust,
    pub cert_chain: Vec<SecCertificate>,
    pub identity: SecIdentity,
    // some fields omitted
}
[]

Information about an imported identity.

Fields

[]

The label of the identity.

[]

The ID of the identity. Typically the SHA-1 hash of the public key.

[]

A SecTrust object set up to validate this identity.

[]

A certificate chain validating this identity.

[]

The identity itself.