public enum KeyStoreType extends Enum<KeyStoreType>
| Enum Constant and Description |
|---|
JCEKS
Alternative Sun proprietary Key Store format.
|
JKS
The Sun proprietary Java Key Store format.
|
PKCS11
PKCS#11 cryptographic storage format for hardware security tokens/devices.
|
PKCS12
PKCS#12 key store format.
|
| Modifier and Type | Method and Description |
|---|---|
static KeyStoreType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyStoreType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyStoreType JKS
public static final KeyStoreType JCEKS
JKS
format. May not be supported on all platforms.public static final KeyStoreType PKCS11
public static final KeyStoreType PKCS12
public static KeyStoreType[] values()
for (KeyStoreType c : KeyStoreType.values()) System.out.println(c);
public static KeyStoreType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2010–2023 Open Identity Platform Community. All rights reserved.