public enum TlsCipherPreference extends Enum<TlsCipherPreference>
Enum Constant and Description |
---|
TLS_CIPHER_KMS_PQ_TLSv1_0_2019_06
Contains Draft Hybrid TLS Ciphers: https://tools.ietf.org/html/draft-campagna-tls-bike-sike-hybrid
These ciphers perform two Key Exchanges (1 ECDHE + 1 Post-Quantum) during the TLS Handshake in order to
combine the security of Classical ECDHE Key Exchange with the conjectured quantum-resistance of newly
proposed key exchanges.
|
TLS_CIPHER_SYSTEM_DEFAULT
Use whatever the System Default Preference is.
|
Modifier and Type | Method and Description |
---|---|
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 nullCopyright © 2019. All rights reserved.