Home
last modified time | relevance | path

Searched refs:EVP_DigestSign (Results 1 – 25 of 30) sorted by relevance

12

/freebsd/crypto/openssl/doc/man3/
H A DEVP_DigestSignInit.pod6 EVP_DigestSignFinal, EVP_DigestSign - EVP signing functions
21 int EVP_DigestSign(EVP_MD_CTX *ctx, unsigned char *sigret,
131 EVP_DigestSign() signs I<tbslen> bytes of data at I<tbs> and places the
133 EVP_DigestSignFinal(). In the event of a failure EVP_DigestSign() cannot be
142 EVP_DigestSign() return 1 for success and 0 for failure.
152 EVP_DigestSign() is a one shot operation which signs a single block of data
177 EVP_DigestSignUpdate(), EVP_DigestSignFinal(), or EVP_DigestSign().
H A DEVP_SignInit.pod87 The previous two bugs are fixed in the newer EVP_DigestSign*() functions.
H A DEVP_PKEY_meth_new.pod323 a B<EVP_MD_CTX> object. They are called by the EVP_DigestSign functions. See
368 a signature in a one-shot mode. They could be called by L<EVP_DigestSign(3)>
H A DEVP_DigestInit.pod552 Some functions such as EVP_DigestSign only finalise copies of internal
/freebsd/crypto/openssl/doc/man7/
H A DEVP_SIGNATURE-ED25519.pod41 EVP_DigestSign() and EVP_DigestVerify() functions.
77 EVP_DigestSign(md_ctx, NULL, &sig_len, msg, msg_len);
80 EVP_DigestSign(md_ctx, sig, &sig_len, msg, msg_len);
H A Devp.pod19 The L<B<EVP_DigestSign>I<XXX>|EVP_DigestSignInit(3)> and
H A Dmigration_guide.pod194 L<EVP_DigestSign(3)> and L<EVP_DigestVerify(3)>.
1096 L<EVP_DigestSign(3)> and L<EVP_DigestVerify(3)>.
/freebsd/crypto/openssh/openbsd-compat/
H A Dopenssl-compat.h82 int EVP_DigestSign(EVP_MD_CTX *, unsigned char *, size_t *,
H A Dopenssl-compat.c100 EVP_DigestSign(EVP_MD_CTX *ctx, unsigned char *sigret, size_t *siglen, in EVP_DigestSign() function
/freebsd/crypto/openssl/crypto/asn1/
H A Da_sign.c269 if (!EVP_DigestSign(ctx, NULL, &outll, buf_in, inl)) { in ASN1_item_sign_ctx()
282 if (!EVP_DigestSign(ctx, buf_out, &outl, buf_in, inl)) { in ASN1_item_sign_ctx()
/freebsd/crypto/openssl/test/
H A Drsa_test.c502 && TEST_true(EVP_DigestSign(ctx, sigbuf, &buflen, msgbuf, msglen))); in test_EVP_rsa_legacy_key()
H A Decdsatest.c162 * - EVP_DigestSign (this is the one-shot version)
251 || !TEST_true(EVP_DigestSign(mctx, sig, &sig_len, tbs, sizeof(tbs))) in test_builtin()
H A Devp_extra_test.c1435 if (!TEST_true(EVP_DigestSign(md_ctx, NULL, &sig_len, kMsg, in test_EVP_DigestSignInit()
1441 if (!TEST_false(EVP_DigestSign(md_ctx, sig, &shortsig_len, kMsg, in test_EVP_DigestSignInit()
1451 if (!TEST_true(EVP_DigestSign(md_ctx, sig, &sig_len, kMsg, in test_EVP_DigestSignInit()
4651 if (!TEST_true(EVP_DigestSign(ctx, res, &reslen, msg, sizeof(msg)))) in test_custom_pmeth()
5078 if (EVP_DigestSign(ctx, NULL, &maclen, msg, sizeof(msg)) != 1) in test_ecx_not_private_key()
5084 if (!TEST_int_eq(EVP_DigestSign(ctx, mac, &maclen, msg, sizeof(msg)), 0)) in test_ecx_not_private_key()
H A Devp_test.c3416 if (!EVP_DigestSign(expected->ctx, NULL, &got_len, in oneshot_digestsign_test_run()
3426 if (!EVP_DigestSign(expected->ctx, got, &got_len, in oneshot_digestsign_test_run()
H A Dacvp_test.c102 || !TEST_int_gt(EVP_DigestSign(md_ctx, sig, &sig_len, msg, msg_len), 0)) in sig_gen()
/freebsd/crypto/openssl/apps/
H A Dpkeyutl.c747 rv = EVP_DigestSign(mctx, NULL, poutlen, mbuf, buf_len); in do_raw_keyop()
750 rv = EVP_DigestSign(mctx, *out, poutlen, mbuf, buf_len); in do_raw_keyop()
H A Dspeed.c1019 ret = EVP_DigestSign(edctx[testnum], eddsasig, eddsasigsize, buf, 20); in EdDSA_sign_loop()
1081 ret = EVP_DigestSign(sm2ctx[testnum], sm2sig, &sm2sigsize, in SM2_sign_loop()
2751 st = EVP_DigestSign(loopargs[i].eddsa_ctx[testnum], in speed_main()
2883 st = EVP_DigestSign(loopargs[i].sm2_ctx[testnum], in speed_main()
/freebsd/crypto/openssl/crypto/evp/
H A Dm_sigver.c567 int EVP_DigestSign(EVP_MD_CTX *ctx, unsigned char *sigret, size_t *siglen, in EVP_DigestSign() function
/freebsd/crypto/openssl/ssl/statem/
H A Dextensions_srvr.c743 || EVP_DigestSign(hctx, hmac, &hmaclen, data, in tls_parse_ctos_cookie()
1818 || EVP_DigestSign(hctx, hmac, &hmaclen, cookie, in tls_construct_stoc_cookie()
H A Dstatem_lib.c354 if (EVP_DigestSign(mctx, NULL, &siglen, hdata, hdatalen) <= 0) { in tls_construct_cert_verify()
360 || EVP_DigestSign(mctx, sig, &siglen, hdata, hdatalen) <= 0) { in tls_construct_cert_verify()
H A Dstatem_srvr.c2701 if (EVP_DigestSign(md_ctx, NULL, &siglen, tbs, tbslen) <=0 in tls_construct_server_key_exchange()
2703 || EVP_DigestSign(md_ctx, sigbytes1, &siglen, tbs, tbslen) <= 0 in tls_construct_server_key_exchange()
/freebsd/contrib/ldns/
H A Ddnssec_sign.c497 r = EVP_DigestSign(ctx,
/freebsd/crypto/openssl/include/openssl/
H A Devp.h808 __owur int EVP_DigestSign(EVP_MD_CTX *ctx, unsigned char *sigret,
/freebsd/secure/lib/libcrypto/
H A DVersion.map4118 EVP_DigestSign;
/freebsd/crypto/openssh/
H A Dsshkey.c541 EVP_DigestSign(ctx, sig, &slen, data, datalen) != 1) { in sshkey_pkey_digest_sign()

12