Home
last modified time | relevance | path

Searched refs:EVP_DigestUpdate (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/base/security/huks/frameworks/huks_standard/main/crypto_engine/openssl/src/
H A Dhks_openssl_hash.c126 int32_t ret = EVP_DigestUpdate(cryptoCtx, msg->data, msg->size); in HksOpensslHashUpdate()
156 ret = EVP_DigestUpdate((EVP_MD_CTX *)*cryptoCtx, msg->data, msg->size); in HksOpensslHashFinal()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/verify/
H A Dpinning.rs21 EVP_DigestFinal_ex, EVP_DigestInit, EVP_DigestUpdate, EVP_MD_CTX_free, EVP_MD_CTX_new,
192 EVP_DigestUpdate(md_ctx, pub_key.as_ptr(), len); in sha256_digest()
/ohos5.0/base/security/appverify/interfaces/innerkits/appverify/src/util/
H A Dhap_verify_openssl_utils.cpp553 if (EVP_DigestUpdate(digestParameter.ptrCtx, content, len) <= 0) { in DigestUpdate()
595 if (EVP_DigestUpdate(digestParameter.ptrCtx, chunk.GetBufferPtr(), chunkLen) <= 0) { in GetDigest()
602 … if (EVP_DigestUpdate(digestParameter.ptrCtx, optionalBlocks[i].optionalBlockValue.GetBufferPtr(), in GetDigest()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/ffi/
H A Dx509.rs35 pub(crate) fn EVP_DigestUpdate(ctx: *mut EVP_MD_CTX, buf: *const c_uchar, cnt: c_int) -> c_int; in EVP_DigestUpdate() function
/ohos5.0/base/security/crypto_framework/plugin/openssl_plugin/crypto_operation/md/src/
H A Dmd_openssl.c78 if (EVP_DigestUpdate(OpensslGetMdCtx(self), input->data, input->len) != HCF_OPENSSL_SUCCESS) { in OpensslEngineUpdateMd()
/ohos5.0/base/security/code_signature/utils/src/
H A Dsigner_info.cpp191 if (!EVP_DigestUpdate(mCtx, data.GetBuffer(), data.GetSize())) { in ComputeDigest()
/ohos5.0/base/security/dlp_permission_service/frameworks/test/mock/
H A Dopenssl_mock.cpp386 int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *d, size_t cnt) in EVP_DigestUpdate() function
/ohos5.0/base/security/dlp_permission_service/interfaces/inner_api/dlp_parse/src/
H A Ddlp_crypt.cpp858 int32_t ret = EVP_DigestUpdate( in DlpOpensslHashUpdate()
884 ret = EVP_DigestUpdate((EVP_MD_CTX*)*cryptoCtx, msg->data, msg->size); in DlpOpensslHashFinal()
/ohos5.0/base/security/device_security_level/oem_property/common/
H A Ddslm_credential_utils.c558 if (EVP_DigestUpdate(ctx, srcData->data, srcData->length) <= 0) { in EcdsaVerify()