Uses of Class
org.wildfly.security.ssl.KeyAgreement
-
Packages that use KeyAgreement Package Description org.wildfly.security.ssl -
-
Uses of KeyAgreement in org.wildfly.security.ssl
Fields in org.wildfly.security.ssl declared as KeyAgreement Modifier and Type Field Description private KeyAgreement
MechanismDatabase.Entry. keyAgreement
Fields in org.wildfly.security.ssl with type parameters of type KeyAgreement Modifier and Type Field Description private EnumSet<KeyAgreement>
KeyAgreementCipherSuitePredicate. set
Methods in org.wildfly.security.ssl that return KeyAgreement Modifier and Type Method Description (package private) static KeyAgreement
KeyAgreement. forName(String name)
KeyAgreement
MechanismDatabase.Entry. getKeyAgreement()
(package private) static KeyAgreement
KeyAgreement. require(String name)
static KeyAgreement
KeyAgreement. valueOf(String name)
Returns the enum constant of this type with the specified name.static KeyAgreement[]
KeyAgreement. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.wildfly.security.ssl with parameters of type KeyAgreement Modifier and Type Method Description boolean
KeyAgreement. in(KeyAgreement... values)
Determine whether this instance is equal to one of the given instances.boolean
KeyAgreement. in(KeyAgreement value1, KeyAgreement value2)
Determine whether this instance is equal to one of the given instances.boolean
KeyAgreement. in(KeyAgreement value1, KeyAgreement value2, KeyAgreement value3)
Determine whether this instance is equal to one of the given instances.static CipherSuitePredicate
CipherSuitePredicate. matchKeyAgreement(KeyAgreement keyAgreement)
Return a predicate which matches the given key exchange scheme.static CipherSuitePredicate
CipherSuitePredicate. matchKeyExchange(KeyAgreement... keyAgreements)
Return a predicate which matches any of the given key exchange schemes.Method parameters in org.wildfly.security.ssl with type arguments of type KeyAgreement Modifier and Type Method Description static boolean
KeyAgreement. isFull(EnumSet<KeyAgreement> keyAgreements)
Determine whether the given set is "full" (meaning it contains all possible values).static CipherSuitePredicate
CipherSuitePredicate. matchKeyExchange(EnumSet<KeyAgreement> keyAgreements)
Return a predicate which matches any of the given key exchange schemes.Constructors in org.wildfly.security.ssl with parameters of type KeyAgreement Constructor Description Entry(String name, List<String> openSslNames, List<String> aliases, KeyAgreement keyAgreement, Authentication authentication, Encryption encryption, Digest digest, Protocol protocol, boolean export, SecurityLevel level, boolean fips, int strengthBits, int algorithmBits)
Constructor parameters in org.wildfly.security.ssl with type arguments of type KeyAgreement Constructor Description KeyAgreementCipherSuitePredicate(EnumSet<KeyAgreement> set)
-