Struct PFX

Source
pub struct PFX {
    pub version: u8,
    pub auth_safe: ContentInfo,
    pub mac_data: Option<MacData>,
}

Fields§

§version: u8§auth_safe: ContentInfo§mac_data: Option<MacData>

Implementations§

Source§

impl PFX

Source

pub fn new( cert_der: &[u8], key_der: &[u8], ca_der: Option<&[u8]>, password: &str, name: &str, ) -> Option<PFX>

Source

pub fn new_with_cas( cert_der: &[u8], key_der: &[u8], ca_der_list: &[&[u8]], password: &str, name: &str, ) -> Option<PFX>

Source

pub fn parse(bytes: &[u8]) -> Result<PFX, ASN1Error>

Source

pub fn write(&self, w: DERWriter<'_>)

Source

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

Source

pub fn bags(&self, password: &str) -> Result<Vec<SafeBag>, ASN1Error>

Source

pub fn cert_bags(&self, password: &str) -> Result<Vec<Vec<u8>>, ASN1Error>

Source

pub fn cert_x509_bags(&self, password: &str) -> Result<Vec<Vec<u8>>, ASN1Error>

Source

pub fn cert_sdsi_bags(&self, password: &str) -> Result<Vec<String>, ASN1Error>

Source

pub fn key_bags(&self, password: &str) -> Result<Vec<Vec<u8>>, ASN1Error>

Source

pub fn verify_mac(&self, password: &str) -> bool

Trait Implementations§

Source§

impl Debug for PFX

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for PFX

§

impl RefUnwindSafe for PFX

§

impl Send for PFX

§

impl Sync for PFX

§

impl Unpin for PFX

§

impl UnwindSafe for PFX

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> Same for T

Source§

type Output = T

Should always be Self
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.