Enum android_tools::java_tools::StoreType
source · [−]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
Auto Trait Implementations
impl RefUnwindSafe for StoreType
impl UnwindSafe for StoreType
Blanket Implementations
Mutably borrows from an owned value. Read more