pub struct Pkcs12(_);

Implementations

Deserializes a DER-encoded PKCS#12 archive.

This corresponds to d2i_PKCS12.

Creates a new builder for a protected pkcs12 certificate.

This uses the defaults from the OpenSSL library:

  • nid_key - AES_256_CBC (3.0.0+) or PBE_WITHSHA1AND3_KEY_TRIPLEDES_CBC
  • nid_cert - AES_256_CBC (3.0.0+) or PBE_WITHSHA1AND40BITRC2_CBC
  • iter - 2048
  • mac_iter - 2048
  • mac_md - SHA-256 (3.0.0+) or SHA-1 (SHA-1 only for BoringSSL)

Methods from Deref<Target = Pkcs12Ref>

Serializes the Pkcs12 to its standard DER encoding.

This corresponds to i2d_PKCS12.

👎Deprecated since 0.10.46: Use parse2 instead

Deprecated.

Extracts the contents of the Pkcs12.

This corresponds to PKCS12_parse.

Trait Implementations

Converts this type into a shared reference of the (usually inferred) input type.
Immutably borrows from an owned value. Read more
The resulting type after dereferencing.
Dereferences the value.
Mutably dereferences the value.
Executes the destructor for this type. Read more
The raw C type.
The type representing a reference to this type.
Constructs an instance of this type from its raw type.
Returns a raw pointer to the wrapped value.

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.