pub struct PdfSignature<'a> { /* private fields */ }Expand description
A single digital signature in a PdfDocument.
Implementations§
Source§impl<'a> PdfSignature<'a>
impl<'a> PdfSignature<'a>
Sourcepub fn bindings(&self) -> &'a dyn PdfiumLibraryBindings
pub fn bindings(&self) -> &'a dyn PdfiumLibraryBindings
Returns the PdfiumLibraryBindings used by this PdfSignature.
Sourcepub fn bytes(&self) -> Vec<u8>
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.
Sourcepub fn reason(&self) -> Option<String>
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.
Sourcepub fn signing_date(&self) -> Option<String>
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 including timezone information.
This value should only be used if the date of signing is not encoded into the digital signature itself.
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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