Uses of Class
org.conscrypt.OpenSSLCipher.Mode
| Package | Description |
|---|---|
| org.conscrypt |
-
Uses of OpenSSLCipher.Mode in org.conscrypt
Methods in org.conscrypt that return OpenSSLCipher.Mode Modifier and Type Method Description static OpenSSLCipher.ModeOpenSSLCipher.Mode. valueOf(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 protected voidOpenSSLCipher.AES. checkSupportedMode(OpenSSLCipher.Mode mode)protected voidOpenSSLCipher.ARC4. checkSupportedMode(OpenSSLCipher.Mode mode)protected abstract voidOpenSSLCipher. checkSupportedMode(OpenSSLCipher.Mode mode)Checks whether the cipher supports this particular ciphermodeand throwsNoSuchAlgorithmExceptionif it doesn't.protected voidOpenSSLCipher.DESEDE. checkSupportedMode(OpenSSLCipher.Mode mode)protected StringOpenSSLCipher.AES. getCipherName(int keyLength, OpenSSLCipher.Mode mode)protected StringOpenSSLCipher.ARC4. getCipherName(int keySize, OpenSSLCipher.Mode mode)protected StringOpenSSLCipher.DESEDE. getCipherName(int keySize, OpenSSLCipher.Mode mode)protected abstract StringOpenSSLCipher. getCipherName(int keySize, OpenSSLCipher.Mode mode)Returns the OpenSSL cipher name for the particularkeySizeand ciphermode.Constructors in org.conscrypt with parameters of type OpenSSLCipher.Mode Constructor Description AES(OpenSSLCipher.Mode mode, OpenSSLCipher.Padding padding)DESEDE(OpenSSLCipher.Mode mode, OpenSSLCipher.Padding padding)OpenSSLCipher(OpenSSLCipher.Mode mode, OpenSSLCipher.Padding padding)