Enum tugger_apple_codesign::DigestType[][src]

pub enum DigestType {
    None,
    Sha1,
    Sha256,
    Sha256Truncated,
    Sha384,
    Sha512,
    Unknown(u8),
}

Represents a digest type from a CS_HASHTYPE_* constants.

Variants

None
Sha1
Sha256
Sha256Truncated
Sha384
Sha512
Unknown(u8)

Implementations

impl DigestType[src]

pub fn hash_len(&self) -> Result<usize, AppleCodesignError>[src]

Obtain the size of hashes for this hash type.

pub fn as_hasher(&self) -> Result<Context, AppleCodesignError>[src]

Obtain a hasher for this digest type.

pub fn digest(&self, data: &[u8]) -> Result<Vec<u8>, AppleCodesignError>[src]

Digest data given the configured hasher.

Trait Implementations

impl Clone for DigestType[src]

impl Copy for DigestType[src]

impl Debug for DigestType[src]

impl Default for DigestType[src]

impl From<u8> for DigestType[src]

impl TryFrom<&'_ str> for DigestType[src]

type Error = AppleCodesignError

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.