public enum TlsCipherPreference extends Enum<TlsCipherPreference>
Enum Constant and Description |
---|
TLS_CIPHER_KMS_PQ_TLSv1_0_2019_06
This TlsCipherPreference contains BIKE Round 1 and SIKE Round 1 Draft Hybrid TLS Ciphers at the top of the
preference list.
|
TLS_CIPHER_PREF_KMS_PQ_SIKE_TLSv1_0_2019_11
This TlsCipherPreference contains SIKE Round 1 Draft Hybrid TLS Ciphers at the top of the preference list.
|
TLS_CIPHER_PREF_KMS_PQ_SIKE_TLSv1_0_2020_02
This TlsCipherPreference contains SIKE Round 2 and SIKE Round 1 Draft Hybrid TLS Ciphers at the top of the
preference list.
|
TLS_CIPHER_PREF_KMS_PQ_TLSv1_0_2020_02
This TlsCipherPreference contains BIKE Round 2, SIKE Round 2, BIKE Round 1, and SIKE Round 1 Draft Hybrid TLS
Ciphers at the top of the preference list.
|
TLS_CIPHER_PREF_KMS_PQ_TLSv1_0_2020_07
This TlsCipherPreference contains Kyber Round 2, BIKE Round 2, SIKE Round 2, BIKE Round 1, and SIKE Round 1 Draft
Hybrid TLS Ciphers at the top of the preference list.
|
TLS_CIPHER_PREF_PQ_TLSv1_0_2021_05
This TlsCipherPreference supports TLS 1.0 through TLS 1.3, as well as supporting Kyber Round 3, Bike Round 3,
and SIKE Round 3.
|
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 final TlsCipherPreference TLS_CIPHER_PREF_KMS_PQ_SIKE_TLSv1_0_2019_11
public static final TlsCipherPreference TLS_CIPHER_PREF_KMS_PQ_TLSv1_0_2020_02
public static final TlsCipherPreference TLS_CIPHER_PREF_KMS_PQ_SIKE_TLSv1_0_2020_02
public static final TlsCipherPreference TLS_CIPHER_PREF_KMS_PQ_TLSv1_0_2020_07
public static final TlsCipherPreference TLS_CIPHER_PREF_PQ_TLSv1_0_2021_05
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 © 2021. All rights reserved.