Invoke fn for every KDF algorithm available from libctx providers.

Synopsis

Declared in <openssl/kdf.h>

void
EVP_KDF_do_all_provided(
    OSSL_LIB_CTX* libctx,
    void(* fn)(EVP_KDF*, void*),
    void* arg);

Parameters

Name

Description

libctx

Library context to search, or NULL for the default.

fn

Callback receiving each fetched EVP_KDF and arg.

arg

Opaque pointer passed through to fn.

Created with MrDocs