Uses of Class
org.conscrypt.OpenSSLCipher.Mode
-
Packages that use OpenSSLCipher.Mode Package Description org.conscrypt -
-
Uses of OpenSSLCipher.Mode in org.conscrypt
Fields in org.conscrypt declared as OpenSSLCipher.Mode Modifier and Type Field Description (package private) OpenSSLCipher.Mode
OpenSSLCipher. mode
The current cipher mode.Methods in org.conscrypt that return OpenSSLCipher.Mode Modifier and Type Method Description static OpenSSLCipher.Mode
OpenSSLCipher.Mode. getNormalized(java.lang.String modeString)
static OpenSSLCipher.Mode
OpenSSLCipher.Mode. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OpenSSLCipher.Mode[]
OpenSSLCipher.Mode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.conscrypt with parameters of type OpenSSLCipher.Mode Modifier and Type Method Description (package private) void
OpenSSLAeadCipherAES.GCM_SIV. checkSupportedMode(OpenSSLCipher.Mode mode)
(package private) void
OpenSSLAeadCipherAES.GCM. checkSupportedMode(OpenSSLCipher.Mode mode)
(package private) void
OpenSSLAeadCipherChaCha20. checkSupportedMode(OpenSSLCipher.Mode mode)
(package private) abstract void
OpenSSLCipher. checkSupportedMode(OpenSSLCipher.Mode mode)
Checks whether the cipher supports this particular ciphermode
and throwsNoSuchAlgorithmException
if it doesn't.(package private) void
OpenSSLCipherChaCha20. checkSupportedMode(OpenSSLCipher.Mode mode)
(package private) void
OpenSSLEvpCipherAES. checkSupportedMode(OpenSSLCipher.Mode mode)
(package private) void
OpenSSLEvpCipherARC4. checkSupportedMode(OpenSSLCipher.Mode mode)
(package private) void
OpenSSLEvpCipherDESEDE. checkSupportedMode(OpenSSLCipher.Mode mode)
(package private) abstract java.lang.String
OpenSSLEvpCipher. getCipherName(int keySize, OpenSSLCipher.Mode mode)
Returns the OpenSSL cipher name for the particularkeySize
and ciphermode
.(package private) java.lang.String
OpenSSLEvpCipherAES. getCipherName(int keyLength, OpenSSLCipher.Mode mode)
(package private) java.lang.String
OpenSSLEvpCipherARC4. getCipherName(int keySize, OpenSSLCipher.Mode mode)
(package private) java.lang.String
OpenSSLEvpCipherDESEDE. getCipherName(int keySize, OpenSSLCipher.Mode mode)
Constructors in org.conscrypt with parameters of type OpenSSLCipher.Mode Constructor Description AES(OpenSSLCipher.Mode mode, OpenSSLCipher.Padding padding)
AES_128(OpenSSLCipher.Mode mode, OpenSSLCipher.Padding padding)
AES_256(OpenSSLCipher.Mode mode, OpenSSLCipher.Padding padding)
OpenSSLAeadCipher(OpenSSLCipher.Mode mode)
OpenSSLAeadCipherAES(OpenSSLCipher.Mode mode)
OpenSSLCipher(OpenSSLCipher.Mode mode, OpenSSLCipher.Padding padding)
OpenSSLEvpCipher(OpenSSLCipher.Mode mode, OpenSSLCipher.Padding padding)
OpenSSLEvpCipherAES(OpenSSLCipher.Mode mode, OpenSSLCipher.Padding padding)
OpenSSLEvpCipherDESEDE(OpenSSLCipher.Mode mode, OpenSSLCipher.Padding padding)
-