Enum tugger_apple_codesign::code_requirement::CodeRequirementExpression [−][src]
Defines a code requirement expression.
Variants
False
false
No payload.
True
true
No payload.
Signing identifier.
identifier <string>
4 bytes length followed by C string.
The certificate chain must lead to an Apple root.
anchor apple
No payload.
The certificate chain must anchor to a certificate with specified SHA-1 hash.
anchor <slot> H"<hash>"
4 bytes slot number, 4 bytes hash length, hash value.
Info.plist key value (legacy).
info[<key>] = <value>
2 pairs of (length + value).
And(Box<CodeRequirementExpression<'a>>, Box<CodeRequirementExpression<'a>>)
Logical and.
expr0 and expr1
Payload consists of 2 sub-expressions with no additional encoding.
Or(Box<CodeRequirementExpression<'a>>, Box<CodeRequirementExpression<'a>>)
Logical or.
expr0 or expr1
Payload consists of 2 sub-expressions with no additional encoding.
Code directory hash.
`cdhash H“
4 bytes length followed by raw digest value.
Not(Box<CodeRequirementExpression<'a>>)
Logical not.
!expr
Payload is 1 sub-expression.
InfoPlistKeyField(Cow<'a, str>, CodeRequirementMatchExpression<'a>)
Info plist key field.
info [key] match expression
e.g. info [CFBundleName] exists
4 bytes key length, key string, then match expression.
CertificateField(i32, Cow<'a, str>, CodeRequirementMatchExpression<'a>)
Certificate field matches.
certificate <slot> [<field>] match expression
Slot i32, 4 bytes field length, field string, then match expression.
CertificateTrusted(i32)
Certificate in position is trusted for code signing.
certificate <position> trusted
4 bytes certificate position.
The certificate chain must lead to a trusted root.
anchor trusted
No payload.
Certificate field matches by OID.
certificate <slot> [field.<oid>] match expression
Slot i32, 4 bytes OID length, OID raw bytes, match expression.
For code signed by Apple, including from code signing certificates issued by Apple.
anchor apple generic
No payload.
EntitlementsKey(Cow<'a, str>, CodeRequirementMatchExpression<'a>)
Value associated with specified key in signature’s embedded entitlements dictionary.
entitlement [<key>] match expression
4 bytes key length, key bytes, match expression.
OID associated with certificate in a given slot.
It is unknown what the OID means.
certificate <slot> [policy.<oid>] match expression
A named Apple anchor.
anchor apple <name>
4 bytes name length, name bytes.
Named code.
(<name>)
4 bytes name length, name bytes.
Platform(u32)
Platform value.
platform = <value>
Payload is a u32.
Binary is notarized.
notarized
No Payload.
Certificate field date.
Unknown what the OID corresponds to.
certificate <slot> [timestamp.<oid>] match expression
Legacy developer ID used.
Implementations
impl<'a> CodeRequirementExpression<'a>
[src]
pub fn from_bytes(
data: &'a [u8]
) -> Result<(Self, &'a [u8]), AppleCodesignError>
[src]
data: &'a [u8]
) -> Result<(Self, &'a [u8]), AppleCodesignError>
Construct an expression element by reading from a slice.
Returns the newly constructed element and remaining data in the slice.
pub fn write_to(&self, dest: &mut impl Write) -> Result<(), AppleCodesignError>
[src]
Write binary representation of this expression to a destination.
pub fn to_bytes(&self) -> Result<Vec<u8>, AppleCodesignError>
[src]
Produce the binary serialization of this expression.
The blob header/magic is not included.
Trait Implementations
impl<'a> Clone for CodeRequirementExpression<'a>
[src]
fn clone(&self) -> CodeRequirementExpression<'a>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a> Debug for CodeRequirementExpression<'a>
[src]
impl<'a> Display for CodeRequirementExpression<'a>
[src]
impl<'a> PartialEq<CodeRequirementExpression<'a>> for CodeRequirementExpression<'a>
[src]
fn eq(&self, other: &CodeRequirementExpression<'a>) -> bool
[src]
fn ne(&self, other: &CodeRequirementExpression<'a>) -> bool
[src]
impl<'a> StructuralPartialEq for CodeRequirementExpression<'a>
[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for CodeRequirementExpression<'a>
impl<'a> Send for CodeRequirementExpression<'a>
impl<'a> Sync for CodeRequirementExpression<'a>
impl<'a> Unpin for CodeRequirementExpression<'a>
impl<'a> UnwindSafe for CodeRequirementExpression<'a>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> SendSyncUnwindSafe for T where
T: Send + Sync + UnwindSafe + ?Sized,
[src]
T: Send + Sync + UnwindSafe + ?Sized,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,