Searched refs:EVP_DecryptUpdate (Results 1 - 5 of 5) sorted by relevance
/base/security/huks/frameworks/huks_standard/main/crypto_engine/openssl/src/ |
H A D | hks_openssl_aes.c | 175 : EVP_DecryptUpdate(ctx, output->data, &outLen, input->data, input->size);
in OpensslBlockCipherHandleFinalThree() 218 if (EVP_DecryptUpdate(ctx, plainText->data, &outLen, message->data, message->size) != HKS_OPENSSL_SUCCESS) {
in OpensslBlockCipherDecryptUpdate() 433 if (EVP_DecryptUpdate(ctx, NULL, &outLen, aeadParam->aad.data, aeadParam->aad.size) != HKS_OPENSSL_SUCCESS) {
in OpensslAesAeadDecryptFinal() 439 if (EVP_DecryptUpdate(ctx, plainText->data, &outLen, message->data, message->size) != HKS_OPENSSL_SUCCESS) {
in OpensslAesAeadDecryptFinal() 523 ret = EVP_DecryptUpdate(ctx, NULL, &outLen, aeadParam->aad.data, aeadParam->aad.size);
in OpensslAesAeadCryptInit() 573 if (EVP_DecryptUpdate(ctx, plainText->data, &outLen, message->data, message->size) != HKS_OPENSSL_SUCCESS) {
in OpensslAesAeadDecryptUpdate() 645 if (EVP_DecryptUpdate(ctx, plainText->data, &outLen, message->data, message->size) !=
in OpensslAesAeadDecryptFinalGCM() 648 HKS_LOG_E("EVP_DecryptUpdate plainText data faild, outLen->%" LOG_PUBLIC "d", outLen);
in OpensslAesAeadDecryptFinalGCM() 956 if (EVP_DecryptUpdate(ctx, plainText->data, &outLen, message->data, message->size) != HKS_OPENSSL_SUCCESS) {
in OpensslAesCipherDecryptFinal()
|
/base/security/huks/test/unittest/huks_standard_test/interface_inner_test/alg_module_test/src/ |
H A D | openssl_aes_helper.c | 219 if (EVP_DecryptUpdate(ctx, outData->data, &outLen, inData->data, inData->size) != 1) { in AesDecrypt() 322 if (EVP_DecryptUpdate(ctx, NULL, &outLen, aad->blob.data, aad->blob.size) != 1) { in AesGcmDecrypt() 326 if (EVP_DecryptUpdate(ctx, outData->data, &outLen, inData->data, inData->size) != 1) { in AesGcmDecrypt()
|
/base/security/dlp_permission_service/interfaces/inner_api/dlp_parse/src/ |
H A D | dlp_crypt.cpp | 338 if (EVP_DecryptUpdate(ctx, plainText->data, &outLen, message->data, message->size) != DLP_OPENSSL_SUCCESS) { in OpensslAesCipherDecryptUpdate() 361 if (EVP_DecryptUpdate(ctx, plainText->data, &outLen, message->data, message->size) != DLP_OPENSSL_SUCCESS) { in OpensslAesCipherDecryptFinalThree() 388 if (EVP_DecryptUpdate(ctx, plainText->data, &outLen, message->data, message->size) != DLP_OPENSSL_SUCCESS) { in OpensslAesCipherDecryptFinal()
|
/base/notification/distributed_notification_service/services/ans/src/common/ |
H A D | aes_gcm_helper.cpp | 244 if (!EVP_DecryptUpdate(ctx, buffer.data(), &len, cipherByte.data(), cipherByte.size())) { in DecryptAesGcm() 245 ANS_LOGE("DecryptAesGcm EVP_DecryptUpdate error"); in DecryptAesGcm()
|
/base/security/dlp_permission_service/frameworks/test/mock/ |
H A D | openssl_mock.cpp | 245 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, const unsigned char *in, int inl) in EVP_DecryptUpdate() function 247 if (IsFuncNeedMock("EVP_DecryptUpdate")) { in EVP_DecryptUpdate() 252 reinterpret_cast<EvpDecryptUpdate>(GetOpensslLibFunc("EVP_DecryptUpdate")); in EVP_DecryptUpdate()
|
Completed in 6 milliseconds