Home
last modified time | relevance | path

Searched refs:outl (Results 1 – 4 of 4) sorted by relevance

/base/security/dlp_permission_service/frameworks/test/mock/
Dopenssl_mock.cpp41 typedef int (*EvpEncryptUpdate)(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, const unsigned …
42 typedef int (*EvpEncryptFinalEx)(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
43 typedef int (*EvpDecryptUpdate)(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, const unsigned …
44 typedef int (*EvpDecryptFinalEx)(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
217 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, const unsigned char *in, … in EVP_EncryptUpdate() argument
228 return (*func)(ctx, out, outl, in, inl); in EVP_EncryptUpdate()
231 int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_EncryptFinal_ex() argument
242 return (*func)(ctx, out, outl); in EVP_EncryptFinal_ex()
245 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, const unsigned char *in, … in EVP_DecryptUpdate() argument
256 return (*func)(ctx, out, outl, in, inl); in EVP_DecryptUpdate()
[all …]
/base/security/crypto_framework/plugin/openssl_plugin/common/src/
Dopenssl_adapter.c982 int Openssl_EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in Openssl_EVP_CipherFinal_ex() argument
984 return EVP_CipherFinal_ex(ctx, out, outl); in Openssl_EVP_CipherFinal_ex()
987 int Openssl_EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, const unsigned cha… in Openssl_EVP_CipherUpdate() argument
989 return EVP_CipherUpdate(ctx, out, outl, in, inl); in Openssl_EVP_CipherUpdate()
/base/security/crypto_framework/test/unittest/src/
Dopenssl_adapter_mock.c1406 int Openssl_EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in Openssl_EVP_CipherFinal_ex() argument
1411 return EVP_CipherFinal_ex(ctx, out, outl); in Openssl_EVP_CipherFinal_ex()
1414 int Openssl_EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, const unsigned cha… in Openssl_EVP_CipherUpdate() argument
1419 return EVP_CipherUpdate(ctx, out, outl, in, inl); in Openssl_EVP_CipherUpdate()
/base/security/crypto_framework/plugin/openssl_plugin/common/inc/
Dopenssl_adapter.h253 int Openssl_EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);
254 int Openssl_EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, const unsigned cha…