Hackfut Security File Manager
Current Path:
/usr/include/openssl
usr
/
include
/
openssl
/
📁
..
📄
aes.h
(5.38 KB)
📄
asn1.h
(51.19 KB)
📄
asn1_mac.h
(18.69 KB)
📄
asn1t.h
(29.39 KB)
📄
bio.h
(32.21 KB)
📄
blowfish.h
(5.02 KB)
📄
bn.h
(32.87 KB)
📄
buffer.h
(4.54 KB)
📄
camellia.h
(4.84 KB)
📄
cast.h
(4.39 KB)
📄
cmac.h
(3.17 KB)
📄
cms.h
(19.46 KB)
📄
comp.h
(1.93 KB)
📄
conf.h
(9.62 KB)
📄
conf_api.h
(3.98 KB)
📄
crypto.h
(23.97 KB)
📄
des.h
(10.48 KB)
📄
des_old.h
(17.81 KB)
📄
dh.h
(9.96 KB)
📄
dsa.h
(12.74 KB)
📄
dso.h
(17.67 KB)
📄
dtls1.h
(7.88 KB)
📄
e_os2.h
(10.2 KB)
📄
ebcdic.h
(540 B)
📄
ec.h
(41.78 KB)
📄
ecdh.h
(4.61 KB)
📄
ecdsa.h
(10.26 KB)
📄
engine.h
(39.63 KB)
📄
err.h
(15.49 KB)
📄
evp.h
(51.48 KB)
📄
fips.h
(10.43 KB)
📄
fips_rand.h
(5.38 KB)
📄
hmac.h
(4.37 KB)
📄
idea.h
(4.36 KB)
📄
krb5_asn.h
(7.46 KB)
📄
kssl.h
(5.92 KB)
📄
lhash.h
(8.88 KB)
📄
md2.h
(3.87 KB)
📄
md4.h
(4.58 KB)
📄
md5.h
(4.58 KB)
📄
modes.h
(5.49 KB)
📄
obj_mac.h
(133.02 KB)
📄
objects.h
(35.78 KB)
📄
ocsp.h
(23.48 KB)
📄
opensslconf-x86_64.h
(7.17 KB)
📄
opensslconf.h
(1.18 KB)
📄
opensslv.h
(3.67 KB)
📄
ossl_typ.h
(7.22 KB)
📄
pem.h
(21.48 KB)
📄
pem2.h
(2.8 KB)
📄
pkcs12.h
(12.36 KB)
📄
pkcs7.h
(17.64 KB)
📄
pqueue.h
(3.5 KB)
📄
rand.h
(6.13 KB)
📄
rc2.h
(4.3 KB)
📄
rc4.h
(3.71 KB)
📄
ripemd.h
(4.23 KB)
📄
rsa.h
(22.8 KB)
📄
safestack.h
(179.84 KB)
📄
seed.h
(5.58 KB)
📄
sha.h
(7.19 KB)
📄
srtp.h
(6.49 KB)
📄
ssl.h
(99.85 KB)
📄
ssl2.h
(10.5 KB)
📄
ssl23.h
(3.66 KB)
📄
ssl3.h
(26.3 KB)
📄
stack.h
(4.31 KB)
📄
symhacks.h
(23.38 KB)
📄
tls1.h
(34.33 KB)
📄
ts.h
(30.28 KB)
📄
txt_db.h
(4.38 KB)
📄
ui.h
(16.27 KB)
📄
ui_compat.h
(3.36 KB)
📄
whrlpool.h
(1019 B)
📄
x509.h
(44.05 KB)
📄
x509_vfy.h
(21.95 KB)
📄
x509v3.h
(31.95 KB)
Editing: comp.h
#ifndef HEADER_COMP_H #define HEADER_COMP_H #include <openssl/crypto.h> #ifdef __cplusplus extern "C" { #endif typedef struct comp_ctx_st COMP_CTX; typedef struct comp_method_st { int type; /* NID for compression library */ const char *name; /* A text string to identify the library */ int (*init)(COMP_CTX *ctx); void (*finish)(COMP_CTX *ctx); int (*compress)(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen); int (*expand)(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen); /* The following two do NOTHING, but are kept for backward compatibility */ long (*ctrl)(void); long (*callback_ctrl)(void); } COMP_METHOD; struct comp_ctx_st { COMP_METHOD *meth; unsigned long compress_in; unsigned long compress_out; unsigned long expand_in; unsigned long expand_out; CRYPTO_EX_DATA ex_data; }; COMP_CTX *COMP_CTX_new(COMP_METHOD *meth); void COMP_CTX_free(COMP_CTX *ctx); int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen, unsigned char *in, int ilen); int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen, unsigned char *in, int ilen); COMP_METHOD *COMP_rle(void ); COMP_METHOD *COMP_zlib(void ); void COMP_zlib_cleanup(void); #ifdef HEADER_BIO_H #ifdef ZLIB BIO_METHOD *BIO_f_zlib(void); #endif #endif /* BEGIN ERROR CODES */ /* The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_COMP_strings(void); /* Error codes for the COMP functions. */ /* Function codes. */ #define COMP_F_BIO_ZLIB_FLUSH 99 #define COMP_F_BIO_ZLIB_NEW 100 #define COMP_F_BIO_ZLIB_READ 101 #define COMP_F_BIO_ZLIB_WRITE 102 /* Reason codes. */ #define COMP_R_ZLIB_DEFLATE_ERROR 99 #define COMP_R_ZLIB_INFLATE_ERROR 100 #define COMP_R_ZLIB_NOT_SUPPORTED 101 #ifdef __cplusplus } #endif #endif
Upload File
Create Folder