public enum TlsCipherPreference extends Enum<TlsCipherPreference>
Enum Constant and Description |
---|
TLS_CIPHER_KMS_PQ_TLSv1_0_2019_06
This TlsCipherPreference contains BIKE and SIKE Draft Hybrid TLS Ciphers at the top of the preference list.
|
TLS_CIPHER_SYSTEM_DEFAULT
Use whatever the System Default Preference is.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isSupported()
Not all Cipher Preferences are supported on all Platforms due to differences in the underlying TLS Libraries.
|
static TlsCipherPreference |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TlsCipherPreference[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TlsCipherPreference TLS_CIPHER_SYSTEM_DEFAULT
public static final TlsCipherPreference TLS_CIPHER_KMS_PQ_TLSv1_0_2019_06
public static TlsCipherPreference[] values()
for (TlsCipherPreference c : TlsCipherPreference.values()) System.out.println(c);
public static TlsCipherPreference 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 nullpublic boolean isSupported()
Copyright © 2019. All rights reserved.