File indexing completed on 2026-09-26 09:05:30
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef OPENSSL_INDICATOR_H
0011 #define OPENSSL_INDICATOR_H
0012 #pragma once
0013
0014 #ifdef __cplusplus
0015 extern "C" {
0016 #endif
0017
0018 #include <openssl/params.h>
0019
0020 typedef int(OSSL_INDICATOR_CALLBACK)(const char *type, const char *desc,
0021 const OSSL_PARAM params[]);
0022
0023 void OSSL_INDICATOR_set_callback(OSSL_LIB_CTX *libctx,
0024 OSSL_INDICATOR_CALLBACK *cb);
0025 void OSSL_INDICATOR_get_callback(OSSL_LIB_CTX *libctx,
0026 OSSL_INDICATOR_CALLBACK **cb);
0027
0028 #ifdef __cplusplus
0029 }
0030 #endif
0031 #endif