Uses of Enum Class
org.mozilla.jss.ssl.SSLCipher
Packages that use SSLCipher
-
Uses of SSLCipher in org.mozilla.jss.nss
Fields in org.mozilla.jss.nss declared as SSLCipherModifier and TypeFieldDescriptionprivate SSLCipher
SSLChannelInfo.cipherSuite
Which cipher suite is used by this SSL socket.private SSLCipher
SSLPreliminaryChannelInfo.cipherSuite
Which cipher suite is used by this SSL socket.private SSLCipher
SSLPreliminaryChannelInfo.zeroRttCipherSuite
Which cipher suite is in use for 0RTT TLS 1.3 connections.Methods in org.mozilla.jss.nss that return SSLCipherModifier and TypeMethodDescriptionSSLChannelInfo.getCipherSuite()
Gets the value of cipherSuite.SSLPreliminaryChannelInfo.getCipherSuite()
Gets the value of cipherSuite; throws an exception when the value isn't yet available.SSLPreliminaryChannelInfo.getZeroRttCipherSuite()
Gets the value of zeroRttCipherSuite; throws an exception when the value isn't yet available. -
Uses of SSLCipher in org.mozilla.jss.ssl
Methods in org.mozilla.jss.ssl that return SSLCipherModifier and TypeMethodDescriptionstatic SSLCipher
SSLCipher.valueOf
(int id) Returns the enum constant of this class with the specified name.static SSLCipher
Returns the enum constant of this class with the specified name.static SSLCipher[]
SSLCipher.values()
Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of SSLCipher in org.mozilla.jss.ssl.javax
Fields in org.mozilla.jss.ssl.javax declared as SSLCipherModifier and TypeFieldDescriptionprivate SSLCipher
JSSSession.cipherSuite
protected SSLCipher[]
JSSEngine.enabled_ciphers
A list of all ciphers enabled by this SSLEngine.private SSLCipher[]
JSSParameters.suites
Methods in org.mozilla.jss.ssl.javax that return SSLCipherModifier and TypeMethodDescriptionJSSSession.getSSLCipher()
JSSParameters.getSSLCiphers()
static SSLCipher[]
JSSEngine.queryEnabledCipherSuites()
Queries the list of cipher suites enabled by default, if a corresponding setEnabledCIpherSuites call hasn't yet been made.Methods in org.mozilla.jss.ssl.javax with parameters of type SSLCipherModifier and TypeMethodDescriptionprotected void
JSSSession.setCipherSuite
(SSLCipher suite) void
JSSParameters.setCipherSuites
(SSLCipher[] cipherSuites) void
JSSEngine.setEnabledCipherSuites
(SSLCipher[] suites) Sets the list of enabled cipher suites from a a list of SSLCipher enum instances.