Home
last modified time | relevance | path

Searched refs:EVP_DigestSignFinal (Results 1 – 22 of 22) sorted by relevance

/freebsd/crypto/openssl/doc/man3/
H A DEVP_DigestSignInit.pod6 EVP_DigestSignFinal, EVP_DigestSign - EVP signing functions
19 int EVP_DigestSignFinal(EVP_MD_CTX *ctx, unsigned char *sig, size_t *siglen);
123 Unless I<sig> is NULL EVP_DigestSignFinal() signs the data in I<ctx>
133 EVP_DigestSignFinal(). In the event of a failure EVP_DigestSign() cannot be
141 EVP_DigestSignInit(), EVP_DigestSignUpdate(), EVP_DigestSignFinal() and
154 calling EVP_DigestSignUpdate() and EVP_DigestSignFinal(). For algorithms which
166 The call to EVP_DigestSignFinal() internally finalizes a copy of the digest
168 EVP_DigestSignFinal() can be called later to digest and sign additional data.
177 EVP_DigestSignUpdate(), EVP_DigestSignFinal(), or EVP_DigestSign().
195 EVP_DigestSignInit(), EVP_DigestSignUpdate() and EVP_DigestSignFinal()
H A DEVP_PKEY_get_size.pod64 used to get the output size for EVP_DigestSignFinal(), according to
65 L<EVP_DigestSignFinal(3)/NOTES>.
H A DEVP_PKEY_meth_new.pod407 digest signing operation by calling L<EVP_DigestSignFinal(3)>.
/freebsd/crypto/openssl/demos/signature/
H A Drsa_pss_hash.c80 if (EVP_DigestSignFinal(mctx, NULL, sig_len) == 0) { in sign()
93 if (EVP_DigestSignFinal(mctx, *sig, sig_len) == 0) { in sign()
H A DEVP_Signature_demo.c117 if (!EVP_DigestSignFinal(sign_context, NULL, &sig_len)) { in demo_sign()
130 if (!EVP_DigestSignFinal(sign_context, sig_value, &sig_len)) { in demo_sign()
/freebsd/crypto/openssh/openbsd-compat/
H A Dopenssl-compat.c108 return EVP_DigestSignFinal(ctx, sigret, siglen); in EVP_DigestSign()
/freebsd/crypto/openssl/test/
H A Devp_extra_test.c1456 if (!TEST_true(EVP_DigestSignFinal(md_ctx, NULL, &sig_len)) in test_EVP_DigestSignInit()
1462 || !TEST_false(EVP_DigestSignFinal(md_ctx, sig, &shortsig_len)) in test_EVP_DigestSignInit()
1463 || !TEST_true(EVP_DigestSignFinal(md_ctx, sig, &sig_len))) in test_EVP_DigestSignInit()
1501 if (!TEST_true(EVP_DigestSignFinal(md_ctx, NULL, &sig2_len)) in test_EVP_DigestSignInit()
1503 || !TEST_true(EVP_DigestSignFinal(md_ctx, sig2, &sig2_len))) in test_EVP_DigestSignInit()
1596 if (!TEST_true(EVP_DigestSignFinal(mdctx, digest, &len))) in test_siphash_digestsign()
2092 if (!TEST_true(EVP_DigestSignFinal(md_ctx, NULL, &sig_len))) in test_EVP_SM2()
2098 if (!TEST_true(EVP_DigestSignFinal(md_ctx, sig, &sig_len))) in test_EVP_SM2()
2437 || !TEST_true(EVP_DigestSignFinal(mdctx, mac, &maclen)) in get_cmac_val()
4655 || !TEST_true(EVP_DigestSignFinal(ctx, res, &reslen))) in test_custom_pmeth()
[all …]
H A Devp_test.c1392 if (!EVP_DigestSignFinal(mctx, NULL, &got_len)) { in mac_test_run_pkey()
1400 if (!EVP_DigestSignFinal(mctx, got, &got_len) in mac_test_run_pkey()
3339 if (!EVP_DigestSignFinal(expected->ctx, NULL, &got_len)) { in digestsign_test_run()
3348 if (!EVP_DigestSignFinal(expected->ctx, got, &got_len)) { in digestsign_test_run()
/freebsd/crypto/openssl/apps/
H A Ddgst.c586 if (!EVP_DigestSignFinal(ctx, NULL, &tmplen)) { in do_fp()
595 if (!EVP_DigestSignFinal(ctx, buf, &len)) { in do_fp()
H A Dpkeyutl.c790 rv = EVP_DigestSignFinal(mctx, NULL, poutlen); in do_raw_keyop()
793 rv = EVP_DigestSignFinal(mctx, *out, poutlen); in do_raw_keyop()
/freebsd/crypto/openssl/doc/man7/
H A DEVP_PKEY-SM2.pod39 instance, EVP_DigestSignInit(), EVP_DigestSignUpdate() and EVP_DigestSignFinal().
/freebsd/crypto/openssl/crypto/evp/
H A Dm_sigver.c468 int EVP_DigestSignFinal(EVP_MD_CTX *ctx, unsigned char *sigret, in EVP_DigestSignFinal() function
589 return EVP_DigestSignFinal(ctx, sigret, siglen); in EVP_DigestSign()
/freebsd/crypto/openssl/crypto/cms/
H A Dcms_sd.c825 if (EVP_DigestSignFinal(mctx, NULL, &siglen) <= 0) in CMS_SignerInfo_sign()
831 if (EVP_DigestSignFinal(mctx, abuf, &siglen) <= 0) in CMS_SignerInfo_sign()
/freebsd/crypto/openssl/crypto/pkcs7/
H A Dpk7_doit.c940 if (EVP_DigestSignFinal(mctx, NULL, &siglen) <= 0) in PKCS7_SIGNER_INFO_sign()
945 if (EVP_DigestSignFinal(mctx, abuf, &siglen) <= 0) in PKCS7_SIGNER_INFO_sign()
/freebsd/crypto/openssl/ssl/statem/
H A Dstatem_lib.c338 || EVP_DigestSignFinal(mctx, NULL, &siglen) <= 0) { in tls_construct_cert_verify()
345 || EVP_DigestSignFinal(mctx, sig, &siglen) <= 0) { in tls_construct_cert_verify()
H A Dextensions.c1618 || EVP_DigestSignFinal(mctx, binderout, &bindersize) <= 0 in tls_psk_do_binder()
/freebsd/crypto/openssl/ssl/record/
H A Dssl3_record.c1500 || EVP_DigestSignFinal(mac_ctx, md, &md_size) <= 0) { in tls1_mac()
/freebsd/tools/tools/crypto/
H A Dcryptocheck.c1260 if (EVP_DigestSignFinal(mdctx, tag, &len) != 1) { in openssl_digest()
/freebsd/crypto/openssl/include/openssl/
H A Devp.h830 __owur int EVP_DigestSignFinal(EVP_MD_CTX *ctx, unsigned char *sigret,
/freebsd/secure/lib/libcrypto/
H A DVersion.map1471 EVP_DigestSignFinal;
/freebsd/secure/lib/libcrypto/man/man3/
H A DMakefile1791 MLINKS+= EVP_DigestSignInit.3 EVP_DigestSignFinal.3
/freebsd/crypto/openssl/util/
H A Dlibcrypto.num2284 EVP_DigestSignFinal 2334 3_0_0 EXIST::FUNCTION: