Trait gmime::MultipartSignedExt[][src]

pub trait MultipartSignedExt {
    fn verify(&self, flags: VerifyFlags) -> Result<Option<SignatureList>, Error>;
}

Trait containing all MultipartSigned methods.

Implementors

MultipartSigned

Required Methods

Attempts to verify the signed MIME part contained within the multipart/signed object self.

flags

a VerifyFlags

Returns

a new SignatureList object on success or None on fail. If the verification fails, an exception will be set on err to provide information as to why the failure occurred.

Implementors