PdfSignature

Struct PdfSignature 

Source
pub struct PdfSignature<'a> { /* private fields */ }
Expand description

A single digital signature in a PdfDocument.

Implementations§

Source§

impl<'a> PdfSignature<'a>

Source

pub fn bindings(&self) -> &'a dyn PdfiumLibraryBindings

Returns the PdfiumLibraryBindings used by this PdfSignature.

Source

pub fn bytes(&self) -> Vec<u8>

Returns the raw byte data for this PdfSignature.

For public key signatures, the byte data is either a DER-encoded PKCS#1 binary or a DER-encoded PKCS#7 binary.

Source

pub fn reason(&self) -> Option<String>

Returns the reason for the signing, if any, as a plain text description provided by the creator of this PdfSignature.

Source

pub fn signing_date(&self) -> Option<String>

Returns the date, if any, in plain text format as specified by the creator of this PdfSignature. The format of the returned value is expected to be D:YYYYMMDDHHMMSS+XX'YY', with precision to the second and timezone information included.

This value should only be used if the date of signing is not available in the PKCS#7 digital signature.

Source

pub fn modification_detection_permission( &self, ) -> Result<PdfSignatureModificationDetectionPermission, PdfiumError>

Returns the modification detection permission (MDP) applicable to this PdfSignature, if available.

For more information on MDP, refer to “DocMDP” in Section 8.7.1 on page 731 of The PDF Reference, Sixth Edition.

Auto Trait Implementations§

§

impl<'a> Freeze for PdfSignature<'a>

§

impl<'a> !RefUnwindSafe for PdfSignature<'a>

§

impl<'a> !Send for PdfSignature<'a>

§

impl<'a> !Sync for PdfSignature<'a>

§

impl<'a> Unpin for PdfSignature<'a>

§

impl<'a> !UnwindSafe for PdfSignature<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.