/freebsd/crypto/openssl/doc/man3/ |
H A D | EVP_DigestSignInit.pod | 6 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 D | EVP_SignInit.pod | 87 The previous two bugs are fixed in the newer EVP_DigestSign*() functions.
|
H A D | EVP_PKEY_meth_new.pod | 323 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 D | EVP_DigestInit.pod | 552 Some functions such as EVP_DigestSign only finalise copies of internal
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | EVP_SIGNATURE-ED25519.pod | 41 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 D | evp.pod | 19 The L<B<EVP_DigestSign>I<XXX>|EVP_DigestSignInit(3)> and
|
H A D | migration_guide.pod | 194 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 D | openssl-compat.h | 82 int EVP_DigestSign(EVP_MD_CTX *, unsigned char *, size_t *,
|
H A D | openssl-compat.c | 100 EVP_DigestSign(EVP_MD_CTX *ctx, unsigned char *sigret, size_t *siglen, in EVP_DigestSign() function
|
/freebsd/crypto/openssl/crypto/asn1/ |
H A D | a_sign.c | 269 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 D | rsa_test.c | 502 && TEST_true(EVP_DigestSign(ctx, sigbuf, &buflen, msgbuf, msglen))); in test_EVP_rsa_legacy_key()
|
H A D | ecdsatest.c | 162 * - 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 D | evp_extra_test.c | 1435 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 D | evp_test.c | 3416 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 D | acvp_test.c | 102 || !TEST_int_gt(EVP_DigestSign(md_ctx, sig, &sig_len, msg, msg_len), 0)) in sig_gen()
|
/freebsd/crypto/openssl/apps/ |
H A D | pkeyutl.c | 747 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 D | speed.c | 1019 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 D | m_sigver.c | 567 int EVP_DigestSign(EVP_MD_CTX *ctx, unsigned char *sigret, size_t *siglen, in EVP_DigestSign() function
|
/freebsd/crypto/openssl/ssl/statem/ |
H A D | extensions_srvr.c | 743 || 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 D | statem_lib.c | 354 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 D | statem_srvr.c | 2701 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 D | dnssec_sign.c | 497 r = EVP_DigestSign(ctx,
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | evp.h | 808 __owur int EVP_DigestSign(EVP_MD_CTX *ctx, unsigned char *sigret,
|
/freebsd/secure/lib/libcrypto/ |
H A D | Version.map | 4118 EVP_DigestSign;
|
/freebsd/crypto/openssh/ |
H A D | sshkey.c | 541 EVP_DigestSign(ctx, sig, &slen, data, datalen) != 1) { in sshkey_pkey_digest_sign()
|