pub enum AuthenticodeVerify {
    Valid,
    CantParse,
    NoSignerCert,
    DigestMissing,
    InternalError,
    NoSignerInfo,
    WrongPkcs7Type,
    BadContent,
    Invalid,
    WrongFileDigest,
    UnknownAlgorithm,
}
Expand description

Status of verification for an authenticode signature.

Variants§

§

Valid

Signature is valid

§

CantParse

Parsing error (from OpenSSL functions)

§

NoSignerCert

Signers certificate is missing

§

DigestMissing

No digest saved inside the signature

§

InternalError

Non verification errors - allocations etc.

§

NoSignerInfo

SignerInfo part of PKCS7 is missing

§

WrongPkcs7Type

PKCS7 doesn’t have type of SignedData, can’t proceed

§

BadContent

PKCS7 doesn’t have corrent content, can’t proceed

§

Invalid

Contained and calculated digest don’t match

§

WrongFileDigest

Signature hash and file hash doesn’t match

§

UnknownAlgorithm

Unknown algorithm, can’t proceed with verification

Trait Implementations§

Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.