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: srtp.h
/* * Copyright 2011-2016 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 */ /* * DTLS code by Eric Rescorla <ekr@rtfm.com> * * Copyright (C) 2006, Network Resonance, Inc. Copyright (C) 2011, RTFM, Inc. */ #ifndef HEADER_D1_SRTP_H # define HEADER_D1_SRTP_H # include <openssl/ssl.h> #ifdef __cplusplus extern "C" { #endif # define SRTP_AES128_CM_SHA1_80 0x0001 # define SRTP_AES128_CM_SHA1_32 0x0002 # define SRTP_AES128_F8_SHA1_80 0x0003 # define SRTP_AES128_F8_SHA1_32 0x0004 # define SRTP_NULL_SHA1_80 0x0005 # define SRTP_NULL_SHA1_32 0x0006 /* AEAD SRTP protection profiles from RFC 7714 */ # define SRTP_AEAD_AES_128_GCM 0x0007 # define SRTP_AEAD_AES_256_GCM 0x0008 # ifndef OPENSSL_NO_SRTP __owur int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles); __owur int SSL_set_tlsext_use_srtp(SSL *ssl, const char *profiles); __owur STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(SSL *ssl); __owur SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s); # endif #ifdef __cplusplus } #endif #endif
SIMPAN PERUBAHAN