Symbol: EVP_DigestFinalXOF
crypto/openssl/apps/dgst.c
694
if (!EVP_DigestFinalXOF(ctx, buf, len)) {
crypto/openssl/apps/speed.c
730
|| !EVP_DigestFinalXOF(ctx, digest, sizeof(digest))) {
crypto/openssl/crypto/ec/curve448/eddsa.c
205
if (!EVP_DigestFinalXOF(hashctx, nonce, sizeof(nonce)))
crypto/openssl/crypto/ec/curve448/eddsa.c
236
|| !EVP_DigestFinalXOF(hashctx, challenge, sizeof(challenge)))
crypto/openssl/crypto/ec/curve448/eddsa.c
344
|| !EVP_DigestFinalXOF(hashctx, challenge, sizeof(challenge))) {
crypto/openssl/crypto/ec/curve448/eddsa.c
40
|| !EVP_DigestFinalXOF(hashctx, out, outlen))
crypto/openssl/crypto/ec/ecx_meth.c
1171
if (EVP_DigestFinalXOF(hashctx, buff, sizeof(buff)) != 1)
crypto/openssl/crypto/ml_kem/ml_kem.c
668
return EVP_DigestFinalXOF(mdctx, out, outlen);
crypto/openssl/crypto/ml_kem/ml_kem.c
747
&& EVP_DigestFinalXOF(mdctx, out, ML_KEM_SHARED_SECRET_BYTES);
crypto/openssl/crypto/slh_dsa/slh_hash.c
45
&& EVP_DigestFinalXOF(ctx, out, out_len) == 1);
crypto/openssl/crypto/slh_dsa/slh_hash.c
60
&& EVP_DigestFinalXOF(ctx, out, out_len) == 1);
crypto/openssl/demos/digest/EVP_MD_xof.c
105
if (EVP_DigestFinalXOF(ctx, digest, digest_len) == 0) {
crypto/openssl/include/openssl/evp.h
744
__owur int EVP_DigestFinalXOF(EVP_MD_CTX *ctx, unsigned char *out,
crypto/openssl/providers/implementations/keymgmt/ecx_kmgmt.c
1302
if (EVP_DigestFinalXOF(hashctx, buff, sizeof(buff)) != 1)
crypto/openssl/providers/implementations/macs/kmac_prov.c
387
&& EVP_DigestFinalXOF(ctx, out, kctx->out_len);
crypto/openssl/providers/implementations/signature/eddsa_sig.c
478
|| !EVP_DigestFinalXOF(hash_ctx, out, outlen))
crypto/openssl/test/curve448_internal_test.c
588
|| !EVP_DigestFinalXOF(hashctx, hashout, sizeof(hashout)))
crypto/openssl/test/evp_extra_test.c
2188
|| !TEST_true(EVP_DigestFinalXOF(md_ctx, md, sizeof(md)))
crypto/openssl/test/evp_test.c
744
if (!EVP_DigestFinalXOF(mctx, (unsigned char *)dont, 0)) {
crypto/openssl/test/evp_test.c
819
if (!EVP_DigestFinalXOF(mctx, got, got_len)) {
crypto/openssl/test/evp_xof_test.c
216
|| !TEST_true(EVP_DigestFinalXOF(ctx, out, sizeof(out)))
crypto/openssl/test/evp_xof_test.c
220
|| !TEST_false(EVP_DigestFinalXOF(ctx, out, sizeof(out)))
crypto/openssl/test/evp_xof_test.c
257
if (!TEST_true(EVP_DigestFinalXOF(ctx, out, sizeof(out)))
crypto/openssl/test/evp_xof_test.c
260
|| !TEST_false(EVP_DigestFinalXOF(ctx, out, sizeof(out))))
crypto/openssl/test/evp_xof_test.c
334
if (!TEST_true(EVP_DigestFinalXOF(ctx, out, sizeof(out)))
crypto/openssl/test/evp_xof_test.c
453
|| !TEST_true(EVP_DigestFinalXOF(ctx, out, sizeof(out))))
crypto/openssl/test/evp_xof_test.c
521
|| !TEST_true(EVP_DigestFinalXOF(ctx, out, sizeof(out))))
crypto/openssl/test/evp_xof_test.c
541
|| !TEST_true(EVP_DigestFinalXOF(ctx, out, sizeof(out))))