Package org.wildfly.security.ssl
Class MechanismDatabase.Entry
- java.lang.Object
-
- org.wildfly.security.ssl.MechanismDatabase.Entry
-
- Enclosing class:
- MechanismDatabase
static final class MechanismDatabase.Entry extends Object
-
-
Field Summary
Fields Modifier and Type Field Description private int
algorithmBits
private List<String>
aliases
private Authentication
authentication
private Digest
digest
private Encryption
encryption
private boolean
export
private boolean
fips
private KeyAgreement
keyAgreement
private SecurityLevel
level
private String
name
private List<String>
openSslNames
private Protocol
protocol
private int
strengthBits
-
Constructor Summary
Constructors 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)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAlgorithmBits()
List<String>
getAliases()
Authentication
getAuthentication()
Digest
getDigest()
Encryption
getEncryption()
KeyAgreement
getKeyAgreement()
SecurityLevel
getLevel()
String
getName()
List<String>
getOpenSslNames()
Protocol
getProtocol()
int
getStrengthBits()
boolean
isExport()
boolean
isFips()
String
toString()
-
-
-
Field Detail
-
name
private final String name
-
keyAgreement
private final KeyAgreement keyAgreement
-
authentication
private final Authentication authentication
-
encryption
private final Encryption encryption
-
digest
private final Digest digest
-
protocol
private final Protocol protocol
-
export
private final boolean export
-
level
private final SecurityLevel level
-
fips
private final boolean fips
-
strengthBits
private final int strengthBits
-
algorithmBits
private final int algorithmBits
-
-
Constructor Detail
-
Entry
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)
-
-
Method Detail
-
getName
public String getName()
-
getKeyAgreement
public KeyAgreement getKeyAgreement()
-
getAuthentication
public Authentication getAuthentication()
-
getEncryption
public Encryption getEncryption()
-
getDigest
public Digest getDigest()
-
getProtocol
public Protocol getProtocol()
-
isExport
public boolean isExport()
-
getLevel
public SecurityLevel getLevel()
-
isFips
public boolean isFips()
-
getStrengthBits
public int getStrengthBits()
-
getAlgorithmBits
public int getAlgorithmBits()
-
-