Struct security_framework::os::macos::code_signing::SecCode
source · pub struct SecCode(_);
Expand description
A code object representing signed code running on the system.
Implementations§
source§impl SecCode
impl SecCode
sourcepub fn for_self(flags: Flags) -> Result<Self>
pub fn for_self(flags: Flags) -> Result<Self>
Retrieves the code object for the code making the call.
sourcepub fn check_validity(
&self,
flags: Flags,
requirement: &SecRequirement
) -> Result<()>
pub fn check_validity( &self, flags: Flags, requirement: &SecRequirement ) -> Result<()>
Performs dynamic validation of signed code.
sourcepub fn copy_guest_with_attribues(
host: Option<&SecCode>,
attrs: &GuestAttributes,
flags: Flags
) -> Result<SecCode>
pub fn copy_guest_with_attribues( host: Option<&SecCode>, attrs: &GuestAttributes, flags: Flags ) -> Result<SecCode>
Asks a code host to identify one of its guests given the type and value of specific attributes of the guest code.
If host
is None
then the code signing root of trust (currently, the
Trait Implementations§
source§impl PartialEq<SecCode> for SecCode
impl PartialEq<SecCode> for SecCode
source§impl TCFType for SecCode
impl TCFType for SecCode
§type Ref = *mut OpaqueSecCodeRef
type Ref = *mut OpaqueSecCodeRef
The reference type wrapped inside this type.
source§fn as_concrete_TypeRef(&self) -> SecCodeRef
fn as_concrete_TypeRef(&self) -> SecCodeRef
Returns the object as its concrete TypeRef.
source§unsafe fn wrap_under_get_rule(reference: SecCodeRef) -> Self
unsafe fn wrap_under_get_rule(reference: SecCodeRef) -> Self
Returns an instance of the object, wrapping the underlying
CFTypeRef
subclass. Use this
when following Core Foundation’s “Get Rule”. The reference count is bumped.source§fn as_CFTypeRef(&self) -> CFTypeRef
fn as_CFTypeRef(&self) -> CFTypeRef
Returns the object as a raw
CFTypeRef
. The reference count is not adjusted.source§unsafe fn wrap_under_create_rule(reference: SecCodeRef) -> Self
unsafe fn wrap_under_create_rule(reference: SecCodeRef) -> Self
Returns an instance of the object, wrapping the underlying
CFTypeRef
subclass. Use this
when following Core Foundation’s “Create Rule”. The reference count is not bumped.source§fn as_CFType(&self) -> CFType
fn as_CFType(&self) -> CFType
Returns the object as a wrapped
CFType
. The reference count is incremented by one.source§fn into_CFType(self) -> CFTypewhere
Self: Sized,
fn into_CFType(self) -> CFTypewhere Self: Sized,
Returns the object as a wrapped
CFType
. Consumes self and avoids changing the reference
count.source§fn retain_count(&self) -> isize
fn retain_count(&self) -> isize
Returns the reference count of the object. It is unwise to do anything other than test
whether the return value of this method is greater than zero.
source§fn instance_of<OtherCFType>(&self) -> boolwhere
OtherCFType: TCFType,
fn instance_of<OtherCFType>(&self) -> boolwhere OtherCFType: TCFType,
Returns true if this value is an instance of another type.
impl ConcreteCFType for SecCode
impl Eq for SecCode
Auto Trait Implementations§
impl RefUnwindSafe for SecCode
impl !Send for SecCode
impl !Sync for SecCode
impl Unpin for SecCode
impl UnwindSafe for SecCode
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