PATH: //proc/thread-self/root/opt/alt/alt-nodejs14/root/usr/include/openssl
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 aes.h
↓
X
📄 asn1.h
↓
X
📄 asn1_mac.h
↓
X
📄 asn1err.h
↓
X
📄 asn1t.h
↓
X
📄 async.h
↓
X
📄 asyncerr.h
↓
X
📄 bio.h
↓
X
📄 bioerr.h
↓
X
📄 blowfish.h
↓
X
📄 bn.h
↓
X
📄 bnerr.h
↓
X
📄 buffer.h
↓
X
📄 buffererr.h
↓
X
📄 camellia.h
↓
X
📄 cast.h
↓
X
📄 cmac.h
↓
X
📄 cms.h
↓
X
📄 cmserr.h
↓
X
📄 comp.h
↓
X
📄 comperr.h
↓
X
📄 conf.h
↓
X
📄 conf_api.h
↓
X
📄 conferr.h
↓
X
📄 crypto.h
↓
X
📄 cryptoerr.h
↓
X
📄 ct.h
↓
X
📄 cterr.h
↓
X
📄 des.h
↓
X
📄 dh.h
↓
X
📄 dherr.h
↓
X
📄 dsa.h
↓
X
📄 dsaerr.h
↓
X
📄 dtls1.h
↓
X
📄 e_os2.h
↓
X
📄 ebcdic.h
↓
X
📄 ec.h
↓
X
📄 ecdh.h
↓
X
📄 ecdsa.h
↓
X
📄 ecerr.h
↓
X
📄 engine.h
↓
X
📄 engineerr.h
↓
X
📄 err.h
↓
X
📄 evp.h
↓
X
📄 evperr.h
↓
X
📄 fips.h
↓
X
📄 fips_rand.h
↓
X
📄 hmac.h
↓
X
📄 idea.h
↓
X
📄 kdf.h
↓
X
📄 kdferr.h
↓
X
📄 lhash.h
↓
X
📄 md2.h
↓
X
📄 md4.h
↓
X
📄 md5.h
↓
X
📄 mdc2.h
↓
X
📄 modes.h
↓
X
📄 obj_mac.h
↓
X
📄 objects.h
↓
X
📄 objectserr.h
↓
X
📄 ocsp.h
↓
X
📄 ocsperr.h
↓
X
📄 opensslconf-x86_64.h
↓
X
📄 opensslconf.h
↓
X
📄 opensslv.h
↓
X
📄 ossl_typ.h
↓
X
📄 pem.h
↓
X
📄 pem2.h
↓
X
📄 pemerr.h
↓
X
📄 pkcs12.h
↓
X
📄 pkcs12err.h
↓
X
📄 pkcs7.h
↓
X
📄 pkcs7err.h
↓
X
📄 rand.h
↓
X
📄 rand_drbg.h
↓
X
📄 randerr.h
↓
X
📄 rc2.h
↓
X
📄 rc4.h
↓
X
📄 rc5.h
↓
X
📄 ripemd.h
↓
X
📄 rsa.h
↓
X
📄 rsaerr.h
↓
X
📄 safestack.h
↓
X
📄 seed.h
↓
X
📄 sha.h
↓
X
📄 srp.h
↓
X
📄 srtp.h
↓
X
📄 ssl.h
↓
X
📄 ssl2.h
↓
X
📄 ssl3.h
↓
X
📄 sslerr.h
↓
X
📄 stack.h
↓
X
📄 store.h
↓
X
📄 storeerr.h
↓
X
📄 symhacks.h
↓
X
📄 tls1.h
↓
X
📄 ts.h
↓
X
📄 tserr.h
↓
X
📄 txt_db.h
↓
X
📄 ui.h
↓
X
📄 uierr.h
↓
X
📄 whrlpool.h
↓
X
📄 x509.h
↓
X
📄 x509_vfy.h
↓
X
📄 x509err.h
↓
X
📄 x509v3.h
↓
X
📄 x509v3err.h
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: async.h
/* * Copyright 2015-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 */ #include <stdlib.h> #ifndef HEADER_ASYNC_H # define HEADER_ASYNC_H #if defined(_WIN32) # if defined(BASETYPES) || defined(_WINDEF_H) /* application has to include <windows.h> to use this */ #define OSSL_ASYNC_FD HANDLE #define OSSL_BAD_ASYNC_FD INVALID_HANDLE_VALUE # endif #else #define OSSL_ASYNC_FD int #define OSSL_BAD_ASYNC_FD -1 #endif # include <openssl/asyncerr.h> # ifdef __cplusplus extern "C" { # endif typedef struct async_job_st ASYNC_JOB; typedef struct async_wait_ctx_st ASYNC_WAIT_CTX; #define ASYNC_ERR 0 #define ASYNC_NO_JOBS 1 #define ASYNC_PAUSE 2 #define ASYNC_FINISH 3 int ASYNC_init_thread(size_t max_size, size_t init_size); void ASYNC_cleanup_thread(void); #ifdef OSSL_ASYNC_FD ASYNC_WAIT_CTX *ASYNC_WAIT_CTX_new(void); void ASYNC_WAIT_CTX_free(ASYNC_WAIT_CTX *ctx); int ASYNC_WAIT_CTX_set_wait_fd(ASYNC_WAIT_CTX *ctx, const void *key, OSSL_ASYNC_FD fd, void *custom_data, void (*cleanup)(ASYNC_WAIT_CTX *, const void *, OSSL_ASYNC_FD, void *)); int ASYNC_WAIT_CTX_get_fd(ASYNC_WAIT_CTX *ctx, const void *key, OSSL_ASYNC_FD *fd, void **custom_data); int ASYNC_WAIT_CTX_get_all_fds(ASYNC_WAIT_CTX *ctx, OSSL_ASYNC_FD *fd, size_t *numfds); int ASYNC_WAIT_CTX_get_changed_fds(ASYNC_WAIT_CTX *ctx, OSSL_ASYNC_FD *addfd, size_t *numaddfds, OSSL_ASYNC_FD *delfd, size_t *numdelfds); int ASYNC_WAIT_CTX_clear_fd(ASYNC_WAIT_CTX *ctx, const void *key); #endif int ASYNC_is_capable(void); int ASYNC_start_job(ASYNC_JOB **job, ASYNC_WAIT_CTX *ctx, int *ret, int (*func)(void *), void *args, size_t size); int ASYNC_pause_job(void); ASYNC_JOB *ASYNC_get_current_job(void); ASYNC_WAIT_CTX *ASYNC_get_wait_ctx(ASYNC_JOB *job); void ASYNC_block_pause(void); void ASYNC_unblock_pause(void); # ifdef __cplusplus } # endif #endif
SIMPAN PERUBAHAN