Home
last modified time | relevance | path

Searched refs:EVP_DigestSignUpdate (Results 1 – 25 of 29) sorted by relevance

12

/third_party/openssl/doc/man3/
DEVP_DigestSignInit.pod5 EVP_DigestSignInit_ex, EVP_DigestSignInit, EVP_DigestSignUpdate,
18 int EVP_DigestSignUpdate(EVP_MD_CTX *ctx, const void *d, size_t cnt);
119 EVP_DigestSignUpdate() hashes I<cnt> bytes of data at I<d> into the
141 EVP_DigestSignInit(), EVP_DigestSignUpdate(), EVP_DigestSignFinal() and
154 calling EVP_DigestSignUpdate() and EVP_DigestSignFinal(). For algorithms which
167 context. This means that calls to EVP_DigestSignUpdate() and
191 EVP_DigestSignInit(), EVP_DigestSignUpdate() and EVP_DigestSignFinal()
196 EVP_DigestSignUpdate() was converted from a macro to a function in OpenSSL 3.0.
DEVP_PKEY_meth_new.pod383 the real message is passed to functions like L<EVP_DigestSignUpdate(3)> or
/third_party/openssl/demos/signature/
DEVP_Signature_demo.c108 if (!EVP_DigestSignUpdate(sign_context, hamlet_1, strlen(hamlet_1))) { in demo_sign()
112 if (!EVP_DigestSignUpdate(sign_context, hamlet_2, strlen(hamlet_2))) { in demo_sign()
Drsa_pss_hash.c74 if (EVP_DigestSignUpdate(mctx, test_message, sizeof(test_message)) == 0) { in sign()
/third_party/rust/crates/rust-openssl/openssl/src/
Dmd_ctx.rs210 #[corresponds(EVP_DigestSignUpdate)]
214 cvt(ffi::EVP_DigestSignUpdate( in digest_sign_update()
/third_party/libwebsockets/lib/tls/openssl/
Dlws-genhash.c150 if (EVP_DigestSignUpdate(ctx->ctx, in, len) != 1) in lws_genhmac_update()
Dlws-genrsa.c377 if (EVP_DigestSignUpdate(mdctx, in, (unsigned int)EVP_MD_size(md))) {
Dlws-genec.c497 if (EVP_DigestSignUpdate(mdctx, in, EVP_MD_size(md))) {
/third_party/rust/crates/rust-openssl/openssl-sys/src/
Devp.rs113 pub unsafe fn EVP_DigestSignUpdate( in EVP_DigestSignUpdate() function
/third_party/openssl/doc/man7/
DEVP_PKEY-SM2.pod39 instance, EVP_DigestSignInit(), EVP_DigestSignUpdate() and EVP_DigestSignFinal().
/third_party/openssl/crypto/evp/
Dm_sigver.c407 int EVP_DigestSignUpdate(EVP_MD_CTX *ctx, const void *data, size_t dsize) in EVP_DigestSignUpdate() function
587 if (sigret != NULL && EVP_DigestSignUpdate(ctx, tbs, tbslen) <= 0) in EVP_DigestSign()
Ddigest.c392 return EVP_DigestSignUpdate(ctx, data, count); in EVP_DigestUpdate()
/third_party/openssl/test/
Dhmactest.c268 if (!TEST_true(EVP_DigestSignUpdate(ctx, ct, sizeof(ct)))) in test_hmac_copy_uninited()
Devp_extra_test.c1302 if (!TEST_true(EVP_DigestSignUpdate(md_ctx, kMsg, sizeof(kMsg)))) in test_EVP_DigestSignInit()
1467 if (!TEST_true(EVP_DigestSignUpdate(mdctx, buf, 8))) in test_siphash_digestsign()
1961 if (!TEST_true(EVP_DigestSignUpdate(md_ctx, kMsg, sizeof(kMsg)))) in test_EVP_SM2()
2309 || !TEST_true(EVP_DigestSignUpdate(mdctx, msg, sizeof(msg))) in get_cmac_val()
4536 if (!TEST_true(EVP_DigestSignUpdate(ctx, msg, sizeof(msg))) in test_signatures_with_engine()
Devp_test.c1376 if (!EVP_DigestSignUpdate(mctx, expected->input, expected->input_len)) { in mac_test_run_pkey()
3285 return EVP_DigestSignUpdate(ctx, buf, buflen); in digestsign_update_fn()
/third_party/openssl/ssl/record/
Dssl3_record.c1472 if (EVP_DigestSignUpdate(mac_ctx, header, sizeof(header)) <= 0 in tls1_mac()
1473 || EVP_DigestSignUpdate(mac_ctx, rec->input, rec->length) <= 0 in tls1_mac()
/third_party/openssl/apps/
Dpkeyutl.c784 rv = EVP_DigestSignUpdate(mctx, tbuf, (size_t)buf_len); in do_raw_keyop()
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
Devp.rs142 pub fn EVP_DigestSignUpdate(ctx: *mut EVP_MD_CTX, data: *const c_void, dsize: size_t) -> c_int; in EVP_DigestSignUpdate() function
/third_party/openssl/util/
Dother.syms246 EVP_DigestSignUpdate define
/third_party/rust/crates/rust-openssl/openssl-sys/
DCHANGELOG.md149 * Added `EVP_DigestSignUpdate` and `EVP_DigestVerifyUpdate`.
/third_party/openssl/crypto/cms/
Dcms_sd.c815 if (EVP_DigestSignUpdate(mctx, abuf, alen) <= 0) in CMS_SignerInfo_sign()
/third_party/openssl/ssl/statem/
Dextensions.c1613 || EVP_DigestSignUpdate(mctx, hash, hashsize) <= 0 in tls_psk_do_binder()
Dstatem_lib.c334 if (EVP_DigestSignUpdate(mctx, hdata, hdatalen) <= 0 in tls_construct_cert_verify()
/third_party/openssl/crypto/pkcs7/
Dpk7_doit.c936 if (EVP_DigestSignUpdate(mctx, abuf, alen) <= 0) in PKCS7_SIGNER_INFO_sign()
/third_party/openssl/ohos_lite/include/openssl/
Devp.h507 # define EVP_DigestSignUpdate(a,b,c) EVP_DigestUpdate(a,b,c) macro

12