pub enum StoreType {
    JKS,
    JCEKS,
    PKCS12,
    PKCS12S2,
    JCERACFKS,
}

Variants

JKS

JCEKS

This keystore implementation employs a much stronger protection of private keys (using password-based encryption with Triple DES) than JKS. You can upgrade your keystore of type “JKS” to type “JCEKS” by changing the password of a private-key entry in your keystore.

PKCS12

There is a difference between PKCS12 type keystore created on the keytool provided in the IBM JVM and the keytool provided in an Oracle JVM. The keytool in an IBM JVM uses a PKCS12 keystore to store both key entries and certificate entries.The keytool in an Oracle JVM uses a PKCS12 keystore to store key entries. The keytool program in IBM’s JVM can read the keystore created by the keytool program provided by an Oracle JVM, but not the other way around.

PKCS12S2

This is a second version of PKCS12 type keystore. It can be read by the keytool program in an Oracle JVM.

JCERACFKS

This is a RACFÂŽ keyring keystore. This type is available only on z/OSÂŽ systems with RACF installed. When using JCERACFKS keystore, you must always specify the -keystore option. This is no default value.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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 resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

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.