����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
/*
* Copyright 2019-2023 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the Apache License 2.0 (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/license.html
*/
#ifndef OPENSSL_TRACE_H
#define OPENSSL_TRACE_H
#pragma once
#include <stdarg.h>
#include <openssl/bio.h>
#ifdef __cplusplus
extern "C" {
#endif
/*
* TRACE CATEGORIES
*/
/*
* The trace messages of the OpenSSL libraries are organized into different
* categories. For every trace category, the application can register a separate
* tracer callback. When a callback is registered, a so called trace channel is
* created for this category. This channel consists essentially of an internal
* BIO which sends all trace output it receives to the registered application
* callback.
*
* The ALL category can be used as a fallback category to register a single
* channel which receives the output from all categories. However, if the
* application intends to print the trace channel name in the line prefix,
* it is better to register channels for all categories separately.
* (This is how the openssl application does it.)
*/
#define OSSL_TRACE_CATEGORY_ALL 0 /* The fallback */
#define OSSL_TRACE_CATEGORY_TRACE 1
#define OSSL_TRACE_CATEGORY_INIT 2
#define OSSL_TRACE_CATEGORY_TLS 3
#define OSSL_TRACE_CATEGORY_TLS_CIPHER 4
#define OSSL_TRACE_CATEGORY_CONF 5
#define OSSL_TRACE_CATEGORY_ENGINE_TABLE 6
#define OSSL_TRACE_CATEGORY_ENGINE_REF_COUNT 7
#define OSSL_TRACE_CATEGORY_PKCS5V2 8
#define OSSL_TRACE_CATEGORY_PKCS12_KEYGEN 9
#define OSSL_TRACE_CATEGORY_PKCS12_DECRYPT 10
#define OSSL_TRACE_CATEGORY_X509V3_POLICY 11
#define OSSL_TRACE_CATEGORY_BN_CTX 12
#define OSSL_TRACE_CATEGORY_CMP 13
#define OSSL_TRACE_CATEGORY_STORE 14
#define OSSL_TRACE_CATEGORY_DECODER 15
#define OSSL_TRACE_CATEGORY_ENCODER 16
#define OSSL_TRACE_CATEGORY_REF_COUNT 17
#define OSSL_TRACE_CATEGORY_HTTP 18
#define OSSL_TRACE_CATEGORY_PROVIDER 19
#define OSSL_TRACE_CATEGORY_QUERY 20
#define OSSL_TRACE_CATEGORY_NUM 21
/* KEEP THIS LIST IN SYNC with trace_categories[] in crypto/trace.c */
/* Returns the trace category number for the given |name| */
int OSSL_trace_get_category_num(const char *name);
/* Returns the trace category name for the given |num| */
const char *OSSL_trace_get_category_name(int num);
/*
* TRACE CONSUMERS
*/
/*
* Enables tracing for the given |category| by providing a BIO sink
* as |channel|. If a null pointer is passed as |channel|, an existing
* trace channel is removed and tracing for the category is disabled.
*
* Returns 1 on success and 0 on failure
*/
int OSSL_trace_set_channel(int category, BIO *channel);
/*
* Attach a prefix and a suffix to the given |category|, to be printed at the
* beginning and at the end of each trace output group, i.e. when
* OSSL_trace_begin() and OSSL_trace_end() are called.
* If a null pointer is passed as argument, the existing prefix or suffix is
* removed.
*
* They return 1 on success and 0 on failure
*/
int OSSL_trace_set_prefix(int category, const char *prefix);
int OSSL_trace_set_suffix(int category, const char *suffix);
/*
* OSSL_trace_cb is the type tracing callback provided by the application.
* It MUST return the number of bytes written, or 0 on error (in other words,
* it can never write zero bytes).
*
* The |buffer| will always contain text, which may consist of several lines.
* The |data| argument points to whatever data was provided by the application
* when registering the tracer function.
*
* The |category| number is given, as well as a |cmd| number, described below.
*/
typedef size_t (*OSSL_trace_cb)(const char *buffer, size_t count,
int category, int cmd, void *data);
/*
* Possible |cmd| numbers.
*/
#define OSSL_TRACE_CTRL_BEGIN 0
#define OSSL_TRACE_CTRL_WRITE 1
#define OSSL_TRACE_CTRL_END 2
/*
* Enables tracing for the given |category| by creating an internal
* trace channel which sends the output to the given |callback|.
* If a null pointer is passed as callback, an existing trace channel
* is removed and tracing for the category is disabled.
*
* NOTE: OSSL_trace_set_channel() and OSSL_trace_set_callback() are mutually
* exclusive.
*
* Returns 1 on success and 0 on failure
*/
int OSSL_trace_set_callback(int category, OSSL_trace_cb callback, void *data);
/*
* TRACE PRODUCERS
*/
/*
* Returns 1 if tracing for the specified category is enabled, otherwise 0
*/
int OSSL_trace_enabled(int category);
/*
* Wrap a group of tracing output calls. OSSL_trace_begin() locks tracing and
* returns the trace channel associated with the given category, or NULL if no
* channel is associated with the category. OSSL_trace_end() unlocks tracing.
*
* Usage:
*
* BIO *out;
* if ((out = OSSL_trace_begin(category)) != NULL) {
* ...
* BIO_fprintf(out, ...);
* ...
* OSSL_trace_end(category, out);
* }
*
* See also the convenience macros OSSL_TRACE_BEGIN and OSSL_TRACE_END below.
*/
BIO *OSSL_trace_begin(int category);
void OSSL_trace_end(int category, BIO *channel);
/*
* OSSL_TRACE* Convenience Macros
*/
/*
* When the tracing feature is disabled, these macros are defined to
* produce dead code, which a good compiler should eliminate.
*/
/*
* OSSL_TRACE_BEGIN, OSSL_TRACE_END - Define a Trace Group
*
* These two macros can be used to create a block which is executed only
* if the corresponding trace category is enabled. Inside this block, a
* local variable named |trc_out| is defined, which points to the channel
* associated with the given trace category.
*
* Usage: (using 'TLS' as an example category)
*
* OSSL_TRACE_BEGIN(TLS) {
*
* BIO_fprintf(trc_out, ... );
*
* } OSSL_TRACE_END(TLS);
*
*
* This expands to the following code
*
* do {
* BIO *trc_out = OSSL_trace_begin(OSSL_TRACE_CATEGORY_TLS);
* if (trc_out != NULL) {
* ...
* BIO_fprintf(trc_out, ...);
* }
* OSSL_trace_end(OSSL_TRACE_CATEGORY_TLS, trc_out);
* } while (0);
*
* The use of the inner '{...}' group and the trailing ';' is enforced
* by the definition of the macros in order to make the code look as much
* like C code as possible.
*
* Before returning from inside the trace block, it is necessary to
* call OSSL_TRACE_CANCEL(category).
*/
#if !defined OPENSSL_NO_TRACE && !defined FIPS_MODULE
#define OSSL_TRACE_BEGIN(category) \
do { \
BIO *trc_out = OSSL_trace_begin(OSSL_TRACE_CATEGORY_##category); \
\
if (trc_out != NULL)
#define OSSL_TRACE_END(category) \
OSSL_trace_end(OSSL_TRACE_CATEGORY_##category, trc_out); \
} \
while (0)
#define OSSL_TRACE_CANCEL(category) \
OSSL_trace_end(OSSL_TRACE_CATEGORY_##category, trc_out)
#else
#define OSSL_TRACE_BEGIN(category) \
do { \
BIO *trc_out = NULL; \
if (0)
#define OSSL_TRACE_END(category) \
} \
while (0)
#define OSSL_TRACE_CANCEL(category) \
((void)0)
#endif
/*
* OSSL_TRACE_ENABLED() - Check whether tracing is enabled for |category|
*
* Usage:
*
* if (OSSL_TRACE_ENABLED(TLS)) {
* ...
* }
*/
#if !defined OPENSSL_NO_TRACE && !defined FIPS_MODULE
#define OSSL_TRACE_ENABLED(category) \
OSSL_trace_enabled(OSSL_TRACE_CATEGORY_##category)
#else
#define OSSL_TRACE_ENABLED(category) (0)
#endif
/*
* OSSL_TRACE*() - OneShot Trace Macros
*
* These macros are intended to produce a simple printf-style trace output.
* Unfortunately, C90 macros don't support variable arguments, so the
* "vararg" OSSL_TRACEV() macro has a rather weird usage pattern:
*
* OSSL_TRACEV(category, (trc_out, "format string", ...args...));
*
* Where 'channel' is the literal symbol of this name, not a variable.
* For that reason, it is currently not intended to be used directly,
* but only as helper macro for the other oneshot trace macros
* OSSL_TRACE(), OSSL_TRACE1(), OSSL_TRACE2(), ...
*
* Usage:
*
* OSSL_TRACE(INIT, "Hello world!\n");
* OSSL_TRACE1(TLS, "The answer is %d\n", 42);
* OSSL_TRACE2(TLS, "The ultimate question to answer %d is '%s'\n",
* 42, "What do you get when you multiply six by nine?");
*/
#if !defined OPENSSL_NO_TRACE && !defined FIPS_MODULE
#define OSSL_TRACEV(category, args) \
OSSL_TRACE_BEGIN(category) \
BIO_printf args; \
OSSL_TRACE_END(category)
#else
#define OSSL_TRACEV(category, args) ((void)0)
#endif
#define OSSL_TRACE(category, text) \
OSSL_TRACEV(category, (trc_out, "%s", text))
#define OSSL_TRACE1(category, format, arg1) \
OSSL_TRACEV(category, (trc_out, format, arg1))
#define OSSL_TRACE2(category, format, arg1, arg2) \
OSSL_TRACEV(category, (trc_out, format, arg1, arg2))
#define OSSL_TRACE3(category, format, arg1, arg2, arg3) \
OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3))
#define OSSL_TRACE4(category, format, arg1, arg2, arg3, arg4) \
OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4))
#define OSSL_TRACE5(category, format, arg1, arg2, arg3, arg4, arg5) \
OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4, arg5))
#define OSSL_TRACE6(category, format, arg1, arg2, arg3, arg4, arg5, arg6) \
OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4, arg5, arg6))
#define OSSL_TRACE7(category, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7) \
OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7))
#define OSSL_TRACE8(category, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) \
OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8))
#define OSSL_TRACE9(category, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) \
OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9))
#define OSSL_TRACE_STRING_MAX 80
int OSSL_trace_string(BIO *out, int text, int full,
const unsigned char *data, size_t size);
#define OSSL_TRACE_STRING(category, text, full, data, len) \
OSSL_TRACE_BEGIN(category) \
{ \
OSSL_trace_string(trc_out, text, full, data, len); \
} \
OSSL_TRACE_END(category)
#ifdef __cplusplus
}
#endif
#endif
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| aes.h | File | 3.23 KB | 0644 |
|
| asn1.h | File | 56.38 KB | 0644 |
|
| asn1err.h | File | 5.05 KB | 0644 |
|
| asn1t.h | File | 37.7 KB | 0644 |
|
| async.h | File | 2.95 KB | 0644 |
|
| asyncerr.h | File | 739 B | 0644 |
|
| bio.h | File | 40.43 KB | 0644 |
|
| bioerr.h | File | 2.3 KB | 0644 |
|
| blowfish.h | File | 2.09 KB | 0644 |
|
| bn.h | File | 21.79 KB | 0644 |
|
| bnerr.h | File | 1.3 KB | 0644 |
|
| buffer.h | File | 1.55 KB | 0644 |
|
| buffererr.h | File | 587 B | 0644 |
|
| byteorder.h | File | 8.25 KB | 0644 |
|
| camellia.h | File | 3.19 KB | 0644 |
|
| cast.h | File | 1.84 KB | 0644 |
|
| cmac.h | File | 1.42 KB | 0644 |
|
| cmp.h | File | 46.91 KB | 0644 |
|
| cmp_util.h | File | 1.59 KB | 0644 |
|
| cmperr.h | File | 4.71 KB | 0644 |
|
| cms.h | File | 30.37 KB | 0644 |
|
| cmserr.h | File | 4.44 KB | 0644 |
|
| comp.h | File | 4.59 KB | 0644 |
|
| comperr.h | File | 1002 B | 0644 |
|
| conf.h | File | 10.14 KB | 0644 |
|
| conf_api.h | File | 1.3 KB | 0644 |
|
| conferr.h | File | 1.66 KB | 0644 |
|
| configuration-x86_64.h | File | 4.36 KB | 0644 |
|
| configuration.h | File | 1.55 KB | 0644 |
|
| conftypes.h | File | 1.15 KB | 0644 |
|
| core.h | File | 7.64 KB | 0644 |
|
| core_dispatch.h | File | 45.85 KB | 0644 |
|
| core_names.h | File | 29.14 KB | 0644 |
|
| core_object.h | File | 1.02 KB | 0644 |
|
| crmf.h | File | 19.18 KB | 0644 |
|
| crmferr.h | File | 1.81 KB | 0644 |
|
| crypto.h | File | 22.58 KB | 0644 |
|
| cryptoerr.h | File | 1.94 KB | 0644 |
|
| cryptoerr_legacy.h | File | 46.89 KB | 0644 |
|
| ct.h | File | 21.72 KB | 0644 |
|
| cterr.h | File | 1.21 KB | 0644 |
|
| decoder.h | File | 4.79 KB | 0644 |
|
| decodererr.h | File | 740 B | 0644 |
|
| des.h | File | 7.58 KB | 0644 |
|
| dh.h | File | 12.72 KB | 0644 |
|
| dherr.h | File | 1.66 KB | 0644 |
|
| dsa.h | File | 10.72 KB | 0644 |
|
| dsaerr.h | File | 1.14 KB | 0644 |
|
| dtls1.h | File | 1.21 KB | 0644 |
|
| e_os2.h | File | 8.25 KB | 0644 |
|
| e_ostime.h | File | 1.12 KB | 0644 |
|
| ebcdic.h | File | 1 KB | 0644 |
|
| ec.h | File | 60.85 KB | 0644 |
|
| ecdh.h | File | 361 B | 0644 |
|
| ecdsa.h | File | 361 B | 0644 |
|
| ecerr.h | File | 3.28 KB | 0644 |
|
| encoder.h | File | 4.46 KB | 0644 |
|
| encodererr.h | File | 741 B | 0644 |
|
| engine.h | File | 36.66 KB | 0644 |
|
| engineerr.h | File | 1.99 KB | 0644 |
|
| err.h | File | 19.96 KB | 0644 |
|
| ess.h | File | 8.5 KB | 0644 |
|
| esserr.h | File | 982 B | 0644 |
|
| evp.h | File | 93.39 KB | 0644 |
|
| evperr.h | File | 5.4 KB | 0644 |
|
| fips.h | File | 601 B | 0644 |
|
| fips_names.h | File | 1.6 KB | 0644 |
|
| fipskey.h | File | 1.21 KB | 0644 |
|
| hmac.h | File | 1.85 KB | 0644 |
|
| hpke.h | File | 5.94 KB | 0644 |
|
| http.h | File | 4.61 KB | 0644 |
|
| httperr.h | File | 1.81 KB | 0644 |
|
| idea.h | File | 2.23 KB | 0644 |
|
| indicator.h | File | 818 B | 0644 |
|
| kdf.h | File | 4.98 KB | 0644 |
|
| kdferr.h | File | 480 B | 0644 |
|
| lhash.h | File | 32.59 KB | 0644 |
|
| macros.h | File | 10.47 KB | 0644 |
|
| md2.h | File | 1.3 KB | 0644 |
|
| md4.h | File | 1.57 KB | 0644 |
|
| md5.h | File | 1.57 KB | 0644 |
|
| mdc2.h | File | 1.28 KB | 0644 |
|
| ml_kem.h | File | 959 B | 0644 |
|
| modes.h | File | 7.94 KB | 0644 |
|
| obj_mac.h | File | 282.74 KB | 0644 |
|
| objects.h | File | 7.39 KB | 0644 |
|
| objectserr.h | File | 686 B | 0644 |
|
| ocsp.h | File | 27.2 KB | 0644 |
|
| ocsperr.h | File | 1.6 KB | 0644 |
|
| opensslconf.h | File | 510 B | 0644 |
|
| opensslv.h | File | 3.37 KB | 0644 |
|
| ossl_typ.h | File | 561 B | 0644 |
|
| param_build.h | File | 2.31 KB | 0644 |
|
| params.h | File | 6.89 KB | 0644 |
|
| pem.h | File | 22.14 KB | 0644 |
|
| pem2.h | File | 523 B | 0644 |
|
| pemerr.h | File | 1.79 KB | 0644 |
|
| pkcs12.h | File | 16.61 KB | 0644 |
|
| pkcs12err.h | File | 1.39 KB | 0644 |
|
| pkcs7.h | File | 21.36 KB | 0644 |
|
| pkcs7err.h | File | 2.19 KB | 0644 |
|
| prov_ssl.h | File | 969 B | 0644 |
|
| proverr.h | File | 6.26 KB | 0644 |
|
| provider.h | File | 3.3 KB | 0644 |
|
| quic.h | File | 2.05 KB | 0644 |
|
| rand.h | File | 3.96 KB | 0644 |
|
| randerr.h | File | 2.43 KB | 0644 |
|
| rc2.h | File | 1.73 KB | 0644 |
|
| rc4.h | File | 1.05 KB | 0644 |
|
| rc5.h | File | 2.1 KB | 0644 |
|
| ripemd.h | File | 1.5 KB | 0644 |
|
| rsa.h | File | 21.78 KB | 0644 |
|
| rsaerr.h | File | 3.77 KB | 0644 |
|
| safestack.h | File | 28.47 KB | 0644 |
|
| seed.h | File | 3.53 KB | 0644 |
|
| self_test.h | File | 4.61 KB | 0644 |
|
| sha.h | File | 4.3 KB | 0644 |
|
| srp.h | File | 14.8 KB | 0644 |
|
| srtp.h | File | 1.84 KB | 0644 |
|
| ssl.h | File | 119.35 KB | 0644 |
|
| ssl2.h | File | 625 B | 0644 |
|
| ssl3.h | File | 12.45 KB | 0644 |
|
| sslerr.h | File | 15.05 KB | 0644 |
|
| sslerr_legacy.h | File | 17.84 KB | 0644 |
|
| stack.h | File | 3.05 KB | 0644 |
|
| store.h | File | 13.68 KB | 0644 |
|
| storeerr.h | File | 1.66 KB | 0644 |
|
| symhacks.h | File | 1.08 KB | 0644 |
|
| thread.h | File | 865 B | 0644 |
|
| tls1.h | File | 61.84 KB | 0644 |
|
| trace.h | File | 10.57 KB | 0644 |
|
| ts.h | File | 18.96 KB | 0644 |
|
| tserr.h | File | 2.03 KB | 0644 |
|
| txt_db.h | File | 1.6 KB | 0644 |
|
| types.h | File | 7.13 KB | 0644 |
|
| ui.h | File | 18.08 KB | 0644 |
|
| uierr.h | File | 1.04 KB | 0644 |
|
| whrlpool.h | File | 1.64 KB | 0644 |
|
| x509.h | File | 65.91 KB | 0644 |
|
| x509_acert.h | File | 21.41 KB | 0644 |
|
| x509_vfy.h | File | 46.07 KB | 0644 |
|
| x509err.h | File | 2.26 KB | 0644 |
|
| x509v3.h | File | 126.32 KB | 0644 |
|
| x509v3err.h | File | 3.49 KB | 0644 |
|