Uses of Class
org.conscrypt.NativeRef.EVP_CIPHER_CTX
-
Packages that use NativeRef.EVP_CIPHER_CTX Package Description org.conscrypt -
-
Uses of NativeRef.EVP_CIPHER_CTX in org.conscrypt
Fields in org.conscrypt declared as NativeRef.EVP_CIPHER_CTX Modifier and Type Field Description private NativeRef.EVP_CIPHER_CTX
OpenSSLEvpCipher. cipherCtx
Native pointer for the OpenSSL EVP_CIPHER context.Methods in org.conscrypt with parameters of type NativeRef.EVP_CIPHER_CTX Modifier and Type Method Description (package private) static int
NativeCrypto. EVP_CIPHER_CTX_block_size(NativeRef.EVP_CIPHER_CTX ctx)
(package private) static void
NativeCrypto. EVP_CIPHER_CTX_set_key_length(NativeRef.EVP_CIPHER_CTX ctx, int keyBitSize)
(package private) static void
NativeCrypto. EVP_CIPHER_CTX_set_padding(NativeRef.EVP_CIPHER_CTX ctx, boolean enablePadding)
(package private) static int
NativeCrypto. EVP_CipherFinal_ex(NativeRef.EVP_CIPHER_CTX ctx, byte[] out, int outOffset)
(package private) static void
NativeCrypto. EVP_CipherInit_ex(NativeRef.EVP_CIPHER_CTX ctx, long evpCipher, byte[] key, byte[] iv, boolean encrypting)
(package private) static int
NativeCrypto. EVP_CipherUpdate(NativeRef.EVP_CIPHER_CTX ctx, byte[] out, int outOffset, byte[] in, int inOffset, int inLength)
(package private) static int
NativeCrypto. get_EVP_CIPHER_CTX_buf_len(NativeRef.EVP_CIPHER_CTX ctx)
(package private) static boolean
NativeCrypto. get_EVP_CIPHER_CTX_final_used(NativeRef.EVP_CIPHER_CTX ctx)
-