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 Send for StoreType
impl Sync for StoreType
impl Unpin for StoreType
impl UnwindSafe for StoreType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more