Uses of Class
org.wildfly.security.ssl.Encryption
-
Packages that use Encryption Package Description org.wildfly.security.ssl -
-
Uses of Encryption in org.wildfly.security.ssl
Fields in org.wildfly.security.ssl declared as Encryption Modifier and Type Field Description static Encryption
Encryption. CHACHA20POLY1305
Deprecated.UseCHACHA20
instead.private Encryption
MechanismDatabase.Entry. encryption
Fields in org.wildfly.security.ssl with type parameters of type Encryption Modifier and Type Field Description private EnumSet<Encryption>
EncryptionCipherSuitePredicate. set
Methods in org.wildfly.security.ssl that return Encryption Modifier and Type Method Description (package private) static Encryption
Encryption. forName(String name)
Encryption
MechanismDatabase.Entry. getEncryption()
(package private) static Encryption
Encryption. require(String name)
static Encryption
Encryption. valueOf(String name)
Returns the enum constant of this type with the specified name.static Encryption[]
Encryption. 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 Encryption Modifier and Type Method Description boolean
Encryption. in(Encryption... values)
Determine whether this instance is equal to one of the given instances.boolean
Encryption. in(Encryption value1, Encryption value2)
Determine whether this instance is equal to one of the given instances.boolean
Encryption. in(Encryption value1, Encryption value2, Encryption value3)
Determine whether this instance is equal to one of the given instances.static CipherSuitePredicate
CipherSuitePredicate. matchEncryption(Encryption encryption)
Return a predicate which matches the given encryption scheme.static CipherSuitePredicate
CipherSuitePredicate. matchEncryption(Encryption... encryptions)
Return a predicate which matches any of the given encryption schemes.Method parameters in org.wildfly.security.ssl with type arguments of type Encryption Modifier and Type Method Description static boolean
Encryption. isFull(EnumSet<Encryption> encryptions)
Determine whether the given set is "full" (meaning it contains all possible values).static CipherSuitePredicate
CipherSuitePredicate. matchEncryption(EnumSet<Encryption> encryptions)
Return a predicate which matches any of the given encryption schemes.Constructors in org.wildfly.security.ssl with parameters of type Encryption 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 Encryption Constructor Description EncryptionCipherSuitePredicate(EnumSet<Encryption> set)
-