├── .editorconfig ├── .gitattributes ├── .github ├── release.yml └── workflows │ ├── main.yml │ ├── pull_request.yml │ └── pull_request_label.yml ├── .gitignore ├── .licenseignore ├── .spi.yml ├── .swift-format ├── .unacceptablelanguageignore ├── Benchmarks ├── Benchmarks │ └── NIOSSLBenchmarks │ │ ├── Benchmarks.swift │ │ ├── ManyWrites.swift │ │ ├── Shared.swift │ │ └── SimpleHandshake.swift ├── Package.swift └── Thresholds │ ├── 5.10 │ ├── NIOSSHBenchmarks.ManyWrites.p90.json │ └── NIOSSHBenchmarks.SimpleHandshake.p90.json │ ├── 6.0 │ ├── NIOSSHBenchmarks.ManyWrites.p90.json │ └── NIOSSHBenchmarks.SimpleHandshake.p90.json │ ├── 6.1 │ ├── NIOSSHBenchmarks.ManyWrites.p90.json │ └── NIOSSHBenchmarks.SimpleHandshake.p90.json │ ├── 6.2 │ ├── NIOSSHBenchmarks.ManyWrites.p90.json │ └── NIOSSHBenchmarks.SimpleHandshake.p90.json │ ├── nightly-main │ ├── NIOSSHBenchmarks.ManyWrites.p90.json │ └── NIOSSHBenchmarks.SimpleHandshake.p90.json │ └── nightly-next │ ├── NIOSSHBenchmarks.ManyWrites.p90.json │ └── NIOSSHBenchmarks.SimpleHandshake.p90.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.txt ├── IntegrationTests ├── plugin_echo.sh ├── plugin_junit_xml.sh ├── run-single-test.sh ├── run-tests.sh ├── test_functions.sh └── tests_01_general │ ├── defines.sh │ ├── test_01_renegotiation.sh │ └── test_02_execstack.sh ├── LICENSE.txt ├── NOTICE.txt ├── Package.swift ├── README.md ├── SECURITY.md ├── Sources ├── CNIOBoringSSL │ ├── crypto │ │ ├── asn1 │ │ │ ├── a_bitstr.cc │ │ │ ├── a_bool.cc │ │ │ ├── a_d2i_fp.cc │ │ │ ├── a_dup.cc │ │ │ ├── a_gentm.cc │ │ │ ├── a_i2d_fp.cc │ │ │ ├── a_int.cc │ │ │ ├── a_mbstr.cc │ │ │ ├── a_object.cc │ │ │ ├── a_octet.cc │ │ │ ├── a_strex.cc │ │ │ ├── a_strnid.cc │ │ │ ├── a_time.cc │ │ │ ├── a_type.cc │ │ │ ├── a_utctm.cc │ │ │ ├── asn1_lib.cc │ │ │ ├── asn1_par.cc │ │ │ ├── asn_pack.cc │ │ │ ├── f_int.cc │ │ │ ├── f_string.cc │ │ │ ├── internal.h │ │ │ ├── posix_time.cc │ │ │ ├── tasn_dec.cc │ │ │ ├── tasn_enc.cc │ │ │ ├── tasn_fre.cc │ │ │ ├── tasn_new.cc │ │ │ ├── tasn_typ.cc │ │ │ └── tasn_utl.cc │ │ ├── base64 │ │ │ └── base64.cc │ │ ├── bcm_support.h │ │ ├── bio │ │ │ ├── bio.cc │ │ │ ├── bio_mem.cc │ │ │ ├── connect.cc │ │ │ ├── errno.cc │ │ │ ├── fd.cc │ │ │ ├── file.cc │ │ │ ├── hexdump.cc │ │ │ ├── internal.h │ │ │ ├── pair.cc │ │ │ ├── printf.cc │ │ │ ├── socket.cc │ │ │ └── socket_helper.cc │ │ ├── blake2 │ │ │ └── blake2.cc │ │ ├── bn │ │ │ ├── bn_asn1.cc │ │ │ └── convert.cc │ │ ├── buf │ │ │ └── buf.cc │ │ ├── bytestring │ │ │ ├── asn1_compat.cc │ │ │ ├── ber.cc │ │ │ ├── cbb.cc │ │ │ ├── cbs.cc │ │ │ ├── internal.h │ │ │ └── unicode.cc │ │ ├── chacha │ │ │ ├── chacha.cc │ │ │ └── internal.h │ │ ├── cipher │ │ │ ├── derive_key.cc │ │ │ ├── e_aesctrhmac.cc │ │ │ ├── e_aesgcmsiv.cc │ │ │ ├── e_chacha20poly1305.cc │ │ │ ├── e_des.cc │ │ │ ├── e_null.cc │ │ │ ├── e_rc2.cc │ │ │ ├── e_rc4.cc │ │ │ ├── e_tls.cc │ │ │ ├── get_cipher.cc │ │ │ ├── internal.h │ │ │ └── tls_cbc.cc │ │ ├── conf │ │ │ ├── conf.cc │ │ │ └── internal.h │ │ ├── cpu_aarch64_apple.cc │ │ ├── cpu_aarch64_fuchsia.cc │ │ ├── cpu_aarch64_linux.cc │ │ ├── cpu_aarch64_openbsd.cc │ │ ├── cpu_aarch64_sysreg.cc │ │ ├── cpu_aarch64_win.cc │ │ ├── cpu_arm_freebsd.cc │ │ ├── cpu_arm_linux.cc │ │ ├── cpu_arm_linux.h │ │ ├── cpu_intel.cc │ │ ├── crypto.cc │ │ ├── curve25519 │ │ │ ├── asm │ │ │ │ └── x25519-asm-arm.S │ │ │ ├── curve25519.cc │ │ │ ├── curve25519_64_adx.cc │ │ │ ├── curve25519_tables.h │ │ │ ├── internal.h │ │ │ └── spake25519.cc │ │ ├── des │ │ │ ├── des.cc │ │ │ └── internal.h │ │ ├── dh │ │ │ ├── dh_asn1.cc │ │ │ └── params.cc │ │ ├── digest │ │ │ └── digest_extra.cc │ │ ├── dsa │ │ │ ├── dsa.cc │ │ │ ├── dsa_asn1.cc │ │ │ └── internal.h │ │ ├── ec │ │ │ ├── ec_asn1.cc │ │ │ ├── ec_derive.cc │ │ │ ├── hash_to_curve.cc │ │ │ └── internal.h │ │ ├── ecdh │ │ │ └── ecdh.cc │ │ ├── ecdsa │ │ │ └── ecdsa_asn1.cc │ │ ├── engine │ │ │ └── engine.cc │ │ ├── err │ │ │ ├── err.cc │ │ │ └── internal.h │ │ ├── evp │ │ │ ├── evp.cc │ │ │ ├── evp_asn1.cc │ │ │ ├── evp_ctx.cc │ │ │ ├── internal.h │ │ │ ├── p_dh.cc │ │ │ ├── p_dh_asn1.cc │ │ │ ├── p_dsa_asn1.cc │ │ │ ├── p_ec.cc │ │ │ ├── p_ec_asn1.cc │ │ │ ├── p_ed25519.cc │ │ │ ├── p_ed25519_asn1.cc │ │ │ ├── p_hkdf.cc │ │ │ ├── p_rsa.cc │ │ │ ├── p_rsa_asn1.cc │ │ │ ├── p_x25519.cc │ │ │ ├── p_x25519_asn1.cc │ │ │ ├── pbkdf.cc │ │ │ ├── print.cc │ │ │ ├── scrypt.cc │ │ │ └── sign.cc │ │ ├── ex_data.cc │ │ ├── fipsmodule │ │ │ ├── aes │ │ │ │ ├── aes.cc.inc │ │ │ │ ├── aes_nohw.cc.inc │ │ │ │ ├── cbc.cc.inc │ │ │ │ ├── cfb.cc.inc │ │ │ │ ├── ctr.cc.inc │ │ │ │ ├── gcm.cc.inc │ │ │ │ ├── gcm_nohw.cc.inc │ │ │ │ ├── internal.h │ │ │ │ ├── key_wrap.cc.inc │ │ │ │ ├── mode_wrappers.cc.inc │ │ │ │ ├── ofb.cc.inc │ │ │ │ └── polyval.cc.inc │ │ │ ├── bcm.cc │ │ │ ├── bcm_interface.h │ │ │ ├── bn │ │ │ │ ├── add.cc.inc │ │ │ │ ├── asm │ │ │ │ │ └── x86_64-gcc.cc.inc │ │ │ │ ├── bn.cc.inc │ │ │ │ ├── bytes.cc.inc │ │ │ │ ├── cmp.cc.inc │ │ │ │ ├── ctx.cc.inc │ │ │ │ ├── div.cc.inc │ │ │ │ ├── div_extra.cc.inc │ │ │ │ ├── exponentiation.cc.inc │ │ │ │ ├── gcd.cc.inc │ │ │ │ ├── gcd_extra.cc.inc │ │ │ │ ├── generic.cc.inc │ │ │ │ ├── internal.h │ │ │ │ ├── jacobi.cc.inc │ │ │ │ ├── montgomery.cc.inc │ │ │ │ ├── montgomery_inv.cc.inc │ │ │ │ ├── mul.cc.inc │ │ │ │ ├── prime.cc.inc │ │ │ │ ├── random.cc.inc │ │ │ │ ├── rsaz_exp.cc.inc │ │ │ │ ├── rsaz_exp.h │ │ │ │ ├── shift.cc.inc │ │ │ │ └── sqrt.cc.inc │ │ │ ├── cipher │ │ │ │ ├── aead.cc.inc │ │ │ │ ├── cipher.cc.inc │ │ │ │ ├── e_aes.cc.inc │ │ │ │ ├── e_aesccm.cc.inc │ │ │ │ └── internal.h │ │ │ ├── cmac │ │ │ │ └── cmac.cc.inc │ │ │ ├── delocate.h │ │ │ ├── dh │ │ │ │ ├── check.cc.inc │ │ │ │ ├── dh.cc.inc │ │ │ │ └── internal.h │ │ │ ├── digest │ │ │ │ ├── digest.cc.inc │ │ │ │ ├── digests.cc.inc │ │ │ │ ├── internal.h │ │ │ │ └── md32_common.h │ │ │ ├── digestsign │ │ │ │ └── digestsign.cc.inc │ │ │ ├── ec │ │ │ │ ├── builtin_curves.h │ │ │ │ ├── ec.cc.inc │ │ │ │ ├── ec_key.cc.inc │ │ │ │ ├── ec_montgomery.cc.inc │ │ │ │ ├── felem.cc.inc │ │ │ │ ├── internal.h │ │ │ │ ├── oct.cc.inc │ │ │ │ ├── p224-64.cc.inc │ │ │ │ ├── p256-nistz-table.h │ │ │ │ ├── p256-nistz.cc.inc │ │ │ │ ├── p256-nistz.h │ │ │ │ ├── p256.cc.inc │ │ │ │ ├── p256_table.h │ │ │ │ ├── scalar.cc.inc │ │ │ │ ├── simple.cc.inc │ │ │ │ ├── simple_mul.cc.inc │ │ │ │ ├── util.cc.inc │ │ │ │ └── wnaf.cc.inc │ │ │ ├── ecdh │ │ │ │ └── ecdh.cc.inc │ │ │ ├── ecdsa │ │ │ │ ├── ecdsa.cc.inc │ │ │ │ └── internal.h │ │ │ ├── fips_shared_support.cc │ │ │ ├── hkdf │ │ │ │ └── hkdf.cc.inc │ │ │ ├── hmac │ │ │ │ └── hmac.cc.inc │ │ │ ├── keccak │ │ │ │ ├── internal.h │ │ │ │ └── keccak.cc.inc │ │ │ ├── mldsa │ │ │ │ └── mldsa.cc.inc │ │ │ ├── mlkem │ │ │ │ └── mlkem.cc.inc │ │ │ ├── rand │ │ │ │ ├── ctrdrbg.cc.inc │ │ │ │ ├── internal.h │ │ │ │ └── rand.cc.inc │ │ │ ├── rsa │ │ │ │ ├── blinding.cc.inc │ │ │ │ ├── internal.h │ │ │ │ ├── padding.cc.inc │ │ │ │ ├── rsa.cc.inc │ │ │ │ └── rsa_impl.cc.inc │ │ │ ├── self_check │ │ │ │ ├── fips.cc.inc │ │ │ │ └── self_check.cc.inc │ │ │ ├── service_indicator │ │ │ │ ├── internal.h │ │ │ │ └── service_indicator.cc.inc │ │ │ ├── sha │ │ │ │ ├── internal.h │ │ │ │ ├── sha1.cc.inc │ │ │ │ ├── sha256.cc.inc │ │ │ │ └── sha512.cc.inc │ │ │ ├── slhdsa │ │ │ │ ├── address.h │ │ │ │ ├── fors.cc.inc │ │ │ │ ├── fors.h │ │ │ │ ├── merkle.cc.inc │ │ │ │ ├── merkle.h │ │ │ │ ├── params.h │ │ │ │ ├── slhdsa.cc.inc │ │ │ │ ├── thash.cc.inc │ │ │ │ ├── thash.h │ │ │ │ ├── wots.cc.inc │ │ │ │ └── wots.h │ │ │ └── tls │ │ │ │ ├── internal.h │ │ │ │ └── kdf.cc.inc │ │ ├── hpke │ │ │ └── hpke.cc │ │ ├── hrss │ │ │ ├── asm │ │ │ │ └── poly_rq_mul.S │ │ │ ├── hrss.cc │ │ │ └── internal.h │ │ ├── internal.h │ │ ├── kyber │ │ │ ├── internal.h │ │ │ └── kyber.cc │ │ ├── lhash │ │ │ ├── internal.h │ │ │ └── lhash.cc │ │ ├── md4 │ │ │ └── md4.cc │ │ ├── md5 │ │ │ ├── internal.h │ │ │ └── md5.cc │ │ ├── mem.cc │ │ ├── mldsa │ │ │ └── mldsa.cc │ │ ├── mlkem │ │ │ └── mlkem.cc │ │ ├── obj │ │ │ ├── obj.cc │ │ │ ├── obj_dat.h │ │ │ └── obj_xref.cc │ │ ├── pem │ │ │ ├── internal.h │ │ │ ├── pem_all.cc │ │ │ ├── pem_info.cc │ │ │ ├── pem_lib.cc │ │ │ ├── pem_oth.cc │ │ │ ├── pem_pk8.cc │ │ │ ├── pem_pkey.cc │ │ │ ├── pem_x509.cc │ │ │ └── pem_xaux.cc │ │ ├── pkcs7 │ │ │ ├── internal.h │ │ │ ├── pkcs7.cc │ │ │ └── pkcs7_x509.cc │ │ ├── pkcs8 │ │ │ ├── internal.h │ │ │ ├── p5_pbev2.cc │ │ │ ├── pkcs8.cc │ │ │ └── pkcs8_x509.cc │ │ ├── poly1305 │ │ │ ├── internal.h │ │ │ ├── poly1305.cc │ │ │ ├── poly1305_arm.cc │ │ │ ├── poly1305_arm_asm.S │ │ │ └── poly1305_vec.cc │ │ ├── pool │ │ │ ├── internal.h │ │ │ └── pool.cc │ │ ├── rand │ │ │ ├── deterministic.cc │ │ │ ├── fork_detect.cc │ │ │ ├── forkunsafe.cc │ │ │ ├── getentropy.cc │ │ │ ├── getrandom_fillin.h │ │ │ ├── ios.cc │ │ │ ├── passive.cc │ │ │ ├── rand.cc │ │ │ ├── sysrand_internal.h │ │ │ ├── trusty.cc │ │ │ ├── urandom.cc │ │ │ └── windows.cc │ │ ├── rc4 │ │ │ └── rc4.cc │ │ ├── refcount.cc │ │ ├── rsa │ │ │ ├── internal.h │ │ │ ├── rsa_asn1.cc │ │ │ ├── rsa_crypt.cc │ │ │ ├── rsa_extra.cc │ │ │ └── rsa_print.cc │ │ ├── sha │ │ │ ├── sha1.cc │ │ │ ├── sha256.cc │ │ │ └── sha512.cc │ │ ├── siphash │ │ │ └── siphash.cc │ │ ├── slhdsa │ │ │ └── slhdsa.cc │ │ ├── spake2plus │ │ │ ├── internal.h │ │ │ └── spake2plus.cc │ │ ├── stack │ │ │ └── stack.cc │ │ ├── thread.cc │ │ ├── thread_none.cc │ │ ├── thread_pthread.cc │ │ ├── thread_win.cc │ │ ├── trust_token │ │ │ ├── internal.h │ │ │ ├── pmbtoken.cc │ │ │ ├── trust_token.cc │ │ │ └── voprf.cc │ │ └── x509 │ │ │ ├── a_digest.cc │ │ │ ├── a_sign.cc │ │ │ ├── a_verify.cc │ │ │ ├── algorithm.cc │ │ │ ├── asn1_gen.cc │ │ │ ├── by_dir.cc │ │ │ ├── by_file.cc │ │ │ ├── ext_dat.h │ │ │ ├── i2d_pr.cc │ │ │ ├── internal.h │ │ │ ├── name_print.cc │ │ │ ├── policy.cc │ │ │ ├── rsa_pss.cc │ │ │ ├── t_crl.cc │ │ │ ├── t_req.cc │ │ │ ├── t_x509.cc │ │ │ ├── t_x509a.cc │ │ │ ├── v3_akey.cc │ │ │ ├── v3_akeya.cc │ │ │ ├── v3_alt.cc │ │ │ ├── v3_bcons.cc │ │ │ ├── v3_bitst.cc │ │ │ ├── v3_conf.cc │ │ │ ├── v3_cpols.cc │ │ │ ├── v3_crld.cc │ │ │ ├── v3_enum.cc │ │ │ ├── v3_extku.cc │ │ │ ├── v3_genn.cc │ │ │ ├── v3_ia5.cc │ │ │ ├── v3_info.cc │ │ │ ├── v3_int.cc │ │ │ ├── v3_lib.cc │ │ │ ├── v3_ncons.cc │ │ │ ├── v3_ocsp.cc │ │ │ ├── v3_pcons.cc │ │ │ ├── v3_pmaps.cc │ │ │ ├── v3_prn.cc │ │ │ ├── v3_purp.cc │ │ │ ├── v3_skey.cc │ │ │ ├── v3_utl.cc │ │ │ ├── x509.cc │ │ │ ├── x509_att.cc │ │ │ ├── x509_cmp.cc │ │ │ ├── x509_d2.cc │ │ │ ├── x509_def.cc │ │ │ ├── x509_ext.cc │ │ │ ├── x509_lu.cc │ │ │ ├── x509_obj.cc │ │ │ ├── x509_req.cc │ │ │ ├── x509_set.cc │ │ │ ├── x509_trs.cc │ │ │ ├── x509_txt.cc │ │ │ ├── x509_v3.cc │ │ │ ├── x509_vfy.cc │ │ │ ├── x509_vpm.cc │ │ │ ├── x509cset.cc │ │ │ ├── x509name.cc │ │ │ ├── x509rset.cc │ │ │ ├── x509spki.cc │ │ │ ├── x_algor.cc │ │ │ ├── x_all.cc │ │ │ ├── x_attrib.cc │ │ │ ├── x_crl.cc │ │ │ ├── x_exten.cc │ │ │ ├── x_name.cc │ │ │ ├── x_pubkey.cc │ │ │ ├── x_req.cc │ │ │ ├── x_sig.cc │ │ │ ├── x_spki.cc │ │ │ ├── x_val.cc │ │ │ ├── x_x509.cc │ │ │ └── x_x509a.cc │ ├── gen │ │ ├── bcm │ │ │ ├── aes-gcm-avx10-x86_64-apple.S │ │ │ ├── aes-gcm-avx10-x86_64-linux.S │ │ │ ├── aes-gcm-avx2-x86_64-apple.S │ │ │ ├── aes-gcm-avx2-x86_64-linux.S │ │ │ ├── aesni-gcm-x86_64-apple.S │ │ │ ├── aesni-gcm-x86_64-linux.S │ │ │ ├── aesni-x86-apple.S │ │ │ ├── aesni-x86-linux.S │ │ │ ├── aesni-x86_64-apple.S │ │ │ ├── aesni-x86_64-linux.S │ │ │ ├── aesv8-armv7-linux.S │ │ │ ├── aesv8-armv8-apple.S │ │ │ ├── aesv8-armv8-linux.S │ │ │ ├── aesv8-armv8-win.S │ │ │ ├── aesv8-gcm-armv8-apple.S │ │ │ ├── aesv8-gcm-armv8-linux.S │ │ │ ├── aesv8-gcm-armv8-win.S │ │ │ ├── armv4-mont-linux.S │ │ │ ├── armv8-mont-apple.S │ │ │ ├── armv8-mont-linux.S │ │ │ ├── armv8-mont-win.S │ │ │ ├── bn-586-apple.S │ │ │ ├── bn-586-linux.S │ │ │ ├── bn-armv8-apple.S │ │ │ ├── bn-armv8-linux.S │ │ │ ├── bn-armv8-win.S │ │ │ ├── bsaes-armv7-linux.S │ │ │ ├── co-586-apple.S │ │ │ ├── co-586-linux.S │ │ │ ├── ghash-armv4-linux.S │ │ │ ├── ghash-neon-armv8-apple.S │ │ │ ├── ghash-neon-armv8-linux.S │ │ │ ├── ghash-neon-armv8-win.S │ │ │ ├── ghash-ssse3-x86-apple.S │ │ │ ├── ghash-ssse3-x86-linux.S │ │ │ ├── ghash-ssse3-x86_64-apple.S │ │ │ ├── ghash-ssse3-x86_64-linux.S │ │ │ ├── ghash-x86-apple.S │ │ │ ├── ghash-x86-linux.S │ │ │ ├── ghash-x86_64-apple.S │ │ │ ├── ghash-x86_64-linux.S │ │ │ ├── ghashv8-armv7-linux.S │ │ │ ├── ghashv8-armv8-apple.S │ │ │ ├── ghashv8-armv8-linux.S │ │ │ ├── ghashv8-armv8-win.S │ │ │ ├── p256-armv8-asm-apple.S │ │ │ ├── p256-armv8-asm-linux.S │ │ │ ├── p256-armv8-asm-win.S │ │ │ ├── p256-x86_64-asm-apple.S │ │ │ ├── p256-x86_64-asm-linux.S │ │ │ ├── p256_beeu-armv8-asm-apple.S │ │ │ ├── p256_beeu-armv8-asm-linux.S │ │ │ ├── p256_beeu-armv8-asm-win.S │ │ │ ├── p256_beeu-x86_64-asm-apple.S │ │ │ ├── p256_beeu-x86_64-asm-linux.S │ │ │ ├── rdrand-x86_64-apple.S │ │ │ ├── rdrand-x86_64-linux.S │ │ │ ├── rsaz-avx2-apple.S │ │ │ ├── rsaz-avx2-linux.S │ │ │ ├── sha1-586-apple.S │ │ │ ├── sha1-586-linux.S │ │ │ ├── sha1-armv4-large-linux.S │ │ │ ├── sha1-armv8-apple.S │ │ │ ├── sha1-armv8-linux.S │ │ │ ├── sha1-armv8-win.S │ │ │ ├── sha1-x86_64-apple.S │ │ │ ├── sha1-x86_64-linux.S │ │ │ ├── sha256-586-apple.S │ │ │ ├── sha256-586-linux.S │ │ │ ├── sha256-armv4-linux.S │ │ │ ├── sha256-armv8-apple.S │ │ │ ├── sha256-armv8-linux.S │ │ │ ├── sha256-armv8-win.S │ │ │ ├── sha256-x86_64-apple.S │ │ │ ├── sha256-x86_64-linux.S │ │ │ ├── sha512-586-apple.S │ │ │ ├── sha512-586-linux.S │ │ │ ├── sha512-armv4-linux.S │ │ │ ├── sha512-armv8-apple.S │ │ │ ├── sha512-armv8-linux.S │ │ │ ├── sha512-armv8-win.S │ │ │ ├── sha512-x86_64-apple.S │ │ │ ├── sha512-x86_64-linux.S │ │ │ ├── vpaes-armv7-linux.S │ │ │ ├── vpaes-armv8-apple.S │ │ │ ├── vpaes-armv8-linux.S │ │ │ ├── vpaes-armv8-win.S │ │ │ ├── vpaes-x86-apple.S │ │ │ ├── vpaes-x86-linux.S │ │ │ ├── vpaes-x86_64-apple.S │ │ │ ├── vpaes-x86_64-linux.S │ │ │ ├── x86-mont-apple.S │ │ │ ├── x86-mont-linux.S │ │ │ ├── x86_64-mont-apple.S │ │ │ ├── x86_64-mont-linux.S │ │ │ ├── x86_64-mont5-apple.S │ │ │ └── x86_64-mont5-linux.S │ │ └── crypto │ │ │ ├── aes128gcmsiv-x86_64-apple.S │ │ │ ├── aes128gcmsiv-x86_64-linux.S │ │ │ ├── chacha-armv4-linux.S │ │ │ ├── chacha-armv8-apple.S │ │ │ ├── chacha-armv8-linux.S │ │ │ ├── chacha-armv8-win.S │ │ │ ├── chacha-x86-apple.S │ │ │ ├── chacha-x86-linux.S │ │ │ ├── chacha-x86_64-apple.S │ │ │ ├── chacha-x86_64-linux.S │ │ │ ├── chacha20_poly1305_armv8-apple.S │ │ │ ├── chacha20_poly1305_armv8-linux.S │ │ │ ├── chacha20_poly1305_armv8-win.S │ │ │ ├── chacha20_poly1305_x86_64-apple.S │ │ │ ├── chacha20_poly1305_x86_64-linux.S │ │ │ ├── err_data.cc │ │ │ ├── md5-586-apple.S │ │ │ ├── md5-586-linux.S │ │ │ ├── md5-x86_64-apple.S │ │ │ └── md5-x86_64-linux.S │ ├── hash.txt │ ├── include │ │ ├── CNIOBoringSSL.h │ │ ├── CNIOBoringSSL_aead.h │ │ ├── CNIOBoringSSL_aes.h │ │ ├── CNIOBoringSSL_arm_arch.h │ │ ├── CNIOBoringSSL_asm_base.h │ │ ├── CNIOBoringSSL_asn1.h │ │ ├── CNIOBoringSSL_asn1_mac.h │ │ ├── CNIOBoringSSL_asn1t.h │ │ ├── CNIOBoringSSL_base.h │ │ ├── CNIOBoringSSL_base64.h │ │ ├── CNIOBoringSSL_bcm_public.h │ │ ├── CNIOBoringSSL_bio.h │ │ ├── CNIOBoringSSL_blake2.h │ │ ├── CNIOBoringSSL_blowfish.h │ │ ├── CNIOBoringSSL_bn.h │ │ ├── CNIOBoringSSL_boringssl_prefix_symbols.h │ │ ├── CNIOBoringSSL_boringssl_prefix_symbols_asm.h │ │ ├── CNIOBoringSSL_buf.h │ │ ├── CNIOBoringSSL_buffer.h │ │ ├── CNIOBoringSSL_bytestring.h │ │ ├── CNIOBoringSSL_cast.h │ │ ├── CNIOBoringSSL_chacha.h │ │ ├── CNIOBoringSSL_cipher.h │ │ ├── CNIOBoringSSL_cmac.h │ │ ├── CNIOBoringSSL_conf.h │ │ ├── CNIOBoringSSL_cpu.h │ │ ├── CNIOBoringSSL_crypto.h │ │ ├── CNIOBoringSSL_ctrdrbg.h │ │ ├── CNIOBoringSSL_curve25519.h │ │ ├── CNIOBoringSSL_des.h │ │ ├── CNIOBoringSSL_dh.h │ │ ├── CNIOBoringSSL_digest.h │ │ ├── CNIOBoringSSL_dsa.h │ │ ├── CNIOBoringSSL_dtls1.h │ │ ├── CNIOBoringSSL_e_os2.h │ │ ├── CNIOBoringSSL_ec.h │ │ ├── CNIOBoringSSL_ec_key.h │ │ ├── CNIOBoringSSL_ecdh.h │ │ ├── CNIOBoringSSL_ecdsa.h │ │ ├── CNIOBoringSSL_engine.h │ │ ├── CNIOBoringSSL_err.h │ │ ├── CNIOBoringSSL_evp.h │ │ ├── CNIOBoringSSL_evp_errors.h │ │ ├── CNIOBoringSSL_ex_data.h │ │ ├── CNIOBoringSSL_hkdf.h │ │ ├── CNIOBoringSSL_hmac.h │ │ ├── CNIOBoringSSL_hpke.h │ │ ├── CNIOBoringSSL_hrss.h │ │ ├── CNIOBoringSSL_is_boringssl.h │ │ ├── CNIOBoringSSL_kdf.h │ │ ├── CNIOBoringSSL_lhash.h │ │ ├── CNIOBoringSSL_md4.h │ │ ├── CNIOBoringSSL_md5.h │ │ ├── CNIOBoringSSL_mem.h │ │ ├── CNIOBoringSSL_mldsa.h │ │ ├── CNIOBoringSSL_mlkem.h │ │ ├── CNIOBoringSSL_nid.h │ │ ├── CNIOBoringSSL_obj.h │ │ ├── CNIOBoringSSL_obj_mac.h │ │ ├── CNIOBoringSSL_objects.h │ │ ├── CNIOBoringSSL_opensslconf.h │ │ ├── CNIOBoringSSL_opensslv.h │ │ ├── CNIOBoringSSL_ossl_typ.h │ │ ├── CNIOBoringSSL_pem.h │ │ ├── CNIOBoringSSL_pkcs12.h │ │ ├── CNIOBoringSSL_pkcs7.h │ │ ├── CNIOBoringSSL_pkcs8.h │ │ ├── CNIOBoringSSL_poly1305.h │ │ ├── CNIOBoringSSL_pool.h │ │ ├── CNIOBoringSSL_posix_time.h │ │ ├── CNIOBoringSSL_rand.h │ │ ├── CNIOBoringSSL_rc4.h │ │ ├── CNIOBoringSSL_ripemd.h │ │ ├── CNIOBoringSSL_rsa.h │ │ ├── CNIOBoringSSL_safestack.h │ │ ├── CNIOBoringSSL_service_indicator.h │ │ ├── CNIOBoringSSL_sha.h │ │ ├── CNIOBoringSSL_siphash.h │ │ ├── CNIOBoringSSL_slhdsa.h │ │ ├── CNIOBoringSSL_span.h │ │ ├── CNIOBoringSSL_srtp.h │ │ ├── CNIOBoringSSL_ssl.h │ │ ├── CNIOBoringSSL_ssl3.h │ │ ├── CNIOBoringSSL_stack.h │ │ ├── CNIOBoringSSL_target.h │ │ ├── CNIOBoringSSL_thread.h │ │ ├── CNIOBoringSSL_time.h │ │ ├── CNIOBoringSSL_tls1.h │ │ ├── CNIOBoringSSL_trust_token.h │ │ ├── CNIOBoringSSL_type_check.h │ │ ├── CNIOBoringSSL_x509.h │ │ ├── CNIOBoringSSL_x509_vfy.h │ │ ├── CNIOBoringSSL_x509v3.h │ │ ├── CNIOBoringSSL_x509v3_errors.h │ │ ├── boringssl_prefix_symbols_nasm.inc │ │ ├── experimental │ │ │ └── CNIOBoringSSL_kyber.h │ │ └── module.modulemap │ ├── ssl │ │ ├── bio_ssl.cc │ │ ├── d1_both.cc │ │ ├── d1_lib.cc │ │ ├── d1_pkt.cc │ │ ├── d1_srtp.cc │ │ ├── dtls_method.cc │ │ ├── dtls_record.cc │ │ ├── encrypted_client_hello.cc │ │ ├── extensions.cc │ │ ├── handoff.cc │ │ ├── handshake.cc │ │ ├── handshake_client.cc │ │ ├── handshake_server.cc │ │ ├── internal.h │ │ ├── s3_both.cc │ │ ├── s3_lib.cc │ │ ├── s3_pkt.cc │ │ ├── ssl_aead_ctx.cc │ │ ├── ssl_asn1.cc │ │ ├── ssl_buffer.cc │ │ ├── ssl_cert.cc │ │ ├── ssl_cipher.cc │ │ ├── ssl_credential.cc │ │ ├── ssl_file.cc │ │ ├── ssl_key_share.cc │ │ ├── ssl_lib.cc │ │ ├── ssl_privkey.cc │ │ ├── ssl_session.cc │ │ ├── ssl_stat.cc │ │ ├── ssl_transcript.cc │ │ ├── ssl_versions.cc │ │ ├── ssl_x509.cc │ │ ├── t1_enc.cc │ │ ├── tls13_both.cc │ │ ├── tls13_client.cc │ │ ├── tls13_enc.cc │ │ ├── tls13_server.cc │ │ ├── tls_method.cc │ │ └── tls_record.cc │ └── third_party │ │ └── fiat │ │ ├── asm │ │ ├── fiat_curve25519_adx_mul.S │ │ ├── fiat_curve25519_adx_square.S │ │ ├── fiat_p256_adx_mul.S │ │ └── fiat_p256_adx_sqr.S │ │ ├── curve25519_32.h │ │ ├── curve25519_64.h │ │ ├── curve25519_64_adx.h │ │ ├── curve25519_64_msvc.h │ │ ├── p256_32.h │ │ ├── p256_64.h │ │ └── p256_64_msvc.h ├── CNIOBoringSSLShims │ ├── include │ │ └── CNIOBoringSSLShims.h │ └── shims.c ├── NIOSSL │ ├── AndroidCABundle.swift │ ├── ByteBufferBIO.swift │ ├── CustomPrivateKey.swift │ ├── Docs.docc │ │ ├── TLSConfiguration.md │ │ ├── index.md │ │ ├── quantum-secure-tls.md │ │ └── trust-roots-behavior.md │ ├── IdentityVerification.swift │ ├── LinuxCABundle.swift │ ├── NIOSSLClientHandler.swift │ ├── NIOSSLHandler+Configuration.swift │ ├── NIOSSLHandler.swift │ ├── NIOSSLServerHandler.swift │ ├── ObjectIdentifier.swift │ ├── PosixPort.swift │ ├── PrivacyInfo.xcprivacy │ ├── SSLCallbacks.swift │ ├── SSLCertificate.swift │ ├── SSLCertificateExtensions.swift │ ├── SSLCertificateName.swift │ ├── SSLConnection.swift │ ├── SSLContext.swift │ ├── SSLErrors.swift │ ├── SSLInit.swift │ ├── SSLPKCS12Bundle.swift │ ├── SSLPrivateKey.swift │ ├── SSLPublicKey.swift │ ├── SecurityFrameworkCertificateVerification.swift │ ├── String+unsafeUninitializedCapacity.swift │ ├── SubjectAlternativeName.swift │ ├── SwiftCrypto │ │ ├── NIOSSLSecureBytes.swift │ │ ├── RNG.swift │ │ ├── SafeCompare.swift │ │ └── Zeroization.swift │ ├── TLSConfiguration.swift │ ├── UniversalBootstrapSupport.swift │ └── UnsafeKeyAndChainTarget.swift ├── NIOSSLHTTP1Client │ ├── README.md │ └── main.swift ├── NIOSSLPerformanceTester │ ├── BenchManyWrites.swift │ ├── BenchRepeatedHandshakes.swift │ ├── Benchmark.swift │ ├── main.swift │ └── shared.swift └── NIOTLSServer │ ├── README.md │ └── main.swift ├── Tests └── NIOSSLTests │ ├── ByteBufferBIOTest.swift │ ├── CertificateVerificationTests.swift │ ├── ClientSNITests.swift │ ├── CustomPrivateKeyTests.swift │ ├── IdentityVerificationTest.swift │ ├── NIOSSLALPNTest.swift │ ├── NIOSSLIntegrationTest.swift │ ├── NIOSSLSecureBytesTests.swift │ ├── NIOSSLTestHelpers.swift │ ├── ObjectIdentifierTests.swift │ ├── SSLCertificateExtensionsTests.swift │ ├── SSLCertificateTest.swift │ ├── SSLContextTests.swift │ ├── SSLPKCS12BundleTest.swift │ ├── SSLPrivateKeyTests.swift │ ├── SecurityFrameworkVerificationTests.swift │ ├── TLS13RecordObserver.swift │ ├── TLSConfigurationTest.swift │ ├── UnsafeTransfer.swift │ └── UnwrappingTests.swift ├── dev └── git.commit.template ├── docker ├── Dockerfile ├── docker-compose.2204.510.yaml ├── docker-compose.2204.58.yaml ├── docker-compose.2204.59.yaml ├── docker-compose.2204.main.yaml └── docker-compose.yaml └── scripts ├── analyze_performance_results.rb ├── build-asm.py ├── integration_tests.sh ├── patch-1-inttypes.patch ├── patch-2-inttypes.patch ├── patch-3-more-inttypes.patch └── vendor-boringssl.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | Sources/CNIOBoringSSL/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request_label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/.github/workflows/pull_request_label.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/.gitignore -------------------------------------------------------------------------------- /.licenseignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/.licenseignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swift-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/.swift-format -------------------------------------------------------------------------------- /.unacceptablelanguageignore: -------------------------------------------------------------------------------- 1 | Sources/CNIOBoringSSL/* 2 | NOTICE.txt 3 | -------------------------------------------------------------------------------- /Benchmarks/Benchmarks/NIOSSLBenchmarks/Benchmarks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Benchmarks/Benchmarks/NIOSSLBenchmarks/Benchmarks.swift -------------------------------------------------------------------------------- /Benchmarks/Benchmarks/NIOSSLBenchmarks/ManyWrites.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Benchmarks/Benchmarks/NIOSSLBenchmarks/ManyWrites.swift -------------------------------------------------------------------------------- /Benchmarks/Benchmarks/NIOSSLBenchmarks/Shared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Benchmarks/Benchmarks/NIOSSLBenchmarks/Shared.swift -------------------------------------------------------------------------------- /Benchmarks/Benchmarks/NIOSSLBenchmarks/SimpleHandshake.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Benchmarks/Benchmarks/NIOSSLBenchmarks/SimpleHandshake.swift -------------------------------------------------------------------------------- /Benchmarks/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Benchmarks/Package.swift -------------------------------------------------------------------------------- /Benchmarks/Thresholds/5.10/NIOSSHBenchmarks.ManyWrites.p90.json: -------------------------------------------------------------------------------- 1 | { 2 | "mallocCountTotal" : 201948 3 | } -------------------------------------------------------------------------------- /Benchmarks/Thresholds/5.10/NIOSSHBenchmarks.SimpleHandshake.p90.json: -------------------------------------------------------------------------------- 1 | { 2 | "mallocCountTotal": 629000 3 | } 4 | -------------------------------------------------------------------------------- /Benchmarks/Thresholds/6.0/NIOSSHBenchmarks.ManyWrites.p90.json: -------------------------------------------------------------------------------- 1 | { 2 | "mallocCountTotal" : 201947 3 | } -------------------------------------------------------------------------------- /Benchmarks/Thresholds/6.0/NIOSSHBenchmarks.SimpleHandshake.p90.json: -------------------------------------------------------------------------------- 1 | { 2 | "mallocCountTotal": 628000 3 | } 4 | -------------------------------------------------------------------------------- /Benchmarks/Thresholds/6.1/NIOSSHBenchmarks.ManyWrites.p90.json: -------------------------------------------------------------------------------- 1 | { 2 | "mallocCountTotal" : 201947 3 | } -------------------------------------------------------------------------------- /Benchmarks/Thresholds/6.1/NIOSSHBenchmarks.SimpleHandshake.p90.json: -------------------------------------------------------------------------------- 1 | { 2 | "mallocCountTotal": 628000 3 | } 4 | -------------------------------------------------------------------------------- /Benchmarks/Thresholds/6.2/NIOSSHBenchmarks.ManyWrites.p90.json: -------------------------------------------------------------------------------- 1 | { 2 | "mallocCountTotal" : 201947 3 | } -------------------------------------------------------------------------------- /Benchmarks/Thresholds/6.2/NIOSSHBenchmarks.SimpleHandshake.p90.json: -------------------------------------------------------------------------------- 1 | { 2 | "mallocCountTotal": 628000 3 | } 4 | -------------------------------------------------------------------------------- /Benchmarks/Thresholds/nightly-main/NIOSSHBenchmarks.ManyWrites.p90.json: -------------------------------------------------------------------------------- 1 | { 2 | "mallocCountTotal" : 201947 3 | } -------------------------------------------------------------------------------- /Benchmarks/Thresholds/nightly-main/NIOSSHBenchmarks.SimpleHandshake.p90.json: -------------------------------------------------------------------------------- 1 | { 2 | "mallocCountTotal": 629000 3 | } 4 | -------------------------------------------------------------------------------- /Benchmarks/Thresholds/nightly-next/NIOSSHBenchmarks.ManyWrites.p90.json: -------------------------------------------------------------------------------- 1 | { 2 | "mallocCountTotal" : 201947 3 | } -------------------------------------------------------------------------------- /Benchmarks/Thresholds/nightly-next/NIOSSHBenchmarks.SimpleHandshake.p90.json: -------------------------------------------------------------------------------- 1 | { 2 | "mallocCountTotal": 628000 3 | } 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /IntegrationTests/plugin_echo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/IntegrationTests/plugin_echo.sh -------------------------------------------------------------------------------- /IntegrationTests/plugin_junit_xml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/IntegrationTests/plugin_junit_xml.sh -------------------------------------------------------------------------------- /IntegrationTests/run-single-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/IntegrationTests/run-single-test.sh -------------------------------------------------------------------------------- /IntegrationTests/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/IntegrationTests/run-tests.sh -------------------------------------------------------------------------------- /IntegrationTests/test_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/IntegrationTests/test_functions.sh -------------------------------------------------------------------------------- /IntegrationTests/tests_01_general/defines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/IntegrationTests/tests_01_general/defines.sh -------------------------------------------------------------------------------- /IntegrationTests/tests_01_general/test_01_renegotiation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/IntegrationTests/tests_01_general/test_01_renegotiation.sh -------------------------------------------------------------------------------- /IntegrationTests/tests_01_general/test_02_execstack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/IntegrationTests/tests_01_general/test_02_execstack.sh -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/a_bitstr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/a_bitstr.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/a_bool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/a_bool.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/a_d2i_fp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/a_d2i_fp.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/a_dup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/a_dup.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/a_gentm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/a_gentm.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/a_i2d_fp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/a_i2d_fp.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/a_int.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/a_int.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/a_mbstr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/a_mbstr.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/a_object.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/a_object.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/a_octet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/a_octet.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/a_strex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/a_strex.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/a_strnid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/a_strnid.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/a_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/a_time.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/a_type.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/a_type.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/a_utctm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/a_utctm.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/asn1_lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/asn1_lib.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/asn1_par.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/asn1_par.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/asn_pack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/asn_pack.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/f_int.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/f_int.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/f_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/f_string.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/posix_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/posix_time.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/tasn_dec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/tasn_dec.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/tasn_enc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/tasn_enc.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/tasn_fre.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/tasn_fre.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/tasn_new.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/tasn_new.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/tasn_typ.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/tasn_typ.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/asn1/tasn_utl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/asn1/tasn_utl.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/base64/base64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/base64/base64.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bcm_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bcm_support.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bio/bio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bio/bio.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bio/bio_mem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bio/bio_mem.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bio/connect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bio/connect.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bio/errno.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bio/errno.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bio/fd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bio/fd.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bio/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bio/file.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bio/hexdump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bio/hexdump.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bio/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bio/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bio/pair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bio/pair.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bio/printf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bio/printf.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bio/socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bio/socket.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bio/socket_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bio/socket_helper.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/blake2/blake2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/blake2/blake2.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bn/bn_asn1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bn/bn_asn1.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bn/convert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bn/convert.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/buf/buf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/buf/buf.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bytestring/asn1_compat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bytestring/asn1_compat.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bytestring/ber.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bytestring/ber.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bytestring/cbb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bytestring/cbb.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bytestring/cbs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bytestring/cbs.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bytestring/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bytestring/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/bytestring/unicode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/bytestring/unicode.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/chacha/chacha.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/chacha/chacha.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/chacha/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/chacha/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cipher/derive_key.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cipher/derive_key.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cipher/e_aesctrhmac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cipher/e_aesctrhmac.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cipher/e_aesgcmsiv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cipher/e_aesgcmsiv.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cipher/e_chacha20poly1305.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cipher/e_chacha20poly1305.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cipher/e_des.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cipher/e_des.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cipher/e_null.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cipher/e_null.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cipher/e_rc2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cipher/e_rc2.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cipher/e_rc4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cipher/e_rc4.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cipher/e_tls.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cipher/e_tls.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cipher/get_cipher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cipher/get_cipher.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cipher/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cipher/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cipher/tls_cbc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cipher/tls_cbc.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/conf/conf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/conf/conf.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/conf/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/conf/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cpu_aarch64_apple.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cpu_aarch64_apple.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cpu_aarch64_fuchsia.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cpu_aarch64_fuchsia.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cpu_aarch64_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cpu_aarch64_linux.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cpu_aarch64_openbsd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cpu_aarch64_openbsd.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cpu_aarch64_sysreg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cpu_aarch64_sysreg.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cpu_aarch64_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cpu_aarch64_win.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cpu_arm_freebsd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cpu_arm_freebsd.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cpu_arm_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cpu_arm_linux.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cpu_arm_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cpu_arm_linux.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/cpu_intel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/cpu_intel.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/crypto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/crypto.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/curve25519/asm/x25519-asm-arm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/curve25519/asm/x25519-asm-arm.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/curve25519/curve25519.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/curve25519/curve25519.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/curve25519/curve25519_64_adx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/curve25519/curve25519_64_adx.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/curve25519/curve25519_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/curve25519/curve25519_tables.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/curve25519/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/curve25519/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/curve25519/spake25519.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/curve25519/spake25519.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/des/des.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/des/des.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/des/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/des/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/dh/dh_asn1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/dh/dh_asn1.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/dh/params.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/dh/params.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/digest/digest_extra.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/digest/digest_extra.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/dsa/dsa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/dsa/dsa.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/dsa/dsa_asn1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/dsa/dsa_asn1.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/dsa/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/dsa/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/ec/ec_asn1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/ec/ec_asn1.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/ec/ec_derive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/ec/ec_derive.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/ec/hash_to_curve.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/ec/hash_to_curve.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/ec/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/ec/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/ecdh/ecdh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/ecdh/ecdh.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/ecdsa/ecdsa_asn1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/ecdsa/ecdsa_asn1.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/engine/engine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/engine/engine.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/err/err.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/err/err.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/err/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/err/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/evp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/evp.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/evp_asn1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/evp_asn1.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/evp_ctx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/evp_ctx.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/p_dh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/p_dh.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/p_dh_asn1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/p_dh_asn1.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/p_dsa_asn1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/p_dsa_asn1.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/p_ec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/p_ec.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/p_ec_asn1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/p_ec_asn1.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/p_ed25519.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/p_ed25519.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/p_ed25519_asn1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/p_ed25519_asn1.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/p_hkdf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/p_hkdf.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/p_rsa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/p_rsa.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/p_rsa_asn1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/p_rsa_asn1.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/p_x25519.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/p_x25519.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/p_x25519_asn1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/p_x25519_asn1.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/pbkdf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/pbkdf.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/print.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/print.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/scrypt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/scrypt.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/evp/sign.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/evp/sign.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/ex_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/ex_data.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/aes/aes.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/aes/aes.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/aes/aes_nohw.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/aes/aes_nohw.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/aes/cbc.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/aes/cbc.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/aes/cfb.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/aes/cfb.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/aes/ctr.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/aes/ctr.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/aes/gcm.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/aes/gcm.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/aes/gcm_nohw.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/aes/gcm_nohw.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/aes/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/aes/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/aes/key_wrap.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/aes/key_wrap.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/aes/mode_wrappers.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/aes/mode_wrappers.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/aes/ofb.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/aes/ofb.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/aes/polyval.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/aes/polyval.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bcm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bcm.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bcm_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bcm_interface.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/add.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/add.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/asm/x86_64-gcc.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/asm/x86_64-gcc.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/bn.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/bn.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/bytes.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/bytes.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/cmp.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/cmp.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/ctx.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/ctx.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/div.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/div.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/div_extra.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/div_extra.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/exponentiation.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/exponentiation.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/gcd.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/gcd.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/gcd_extra.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/gcd_extra.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/generic.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/generic.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/jacobi.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/jacobi.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/montgomery.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/montgomery.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/montgomery_inv.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/montgomery_inv.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/mul.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/mul.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/prime.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/prime.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/random.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/random.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/rsaz_exp.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/rsaz_exp.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/rsaz_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/rsaz_exp.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/shift.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/shift.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/bn/sqrt.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/bn/sqrt.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/cipher/aead.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/cipher/aead.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/cipher/cipher.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/cipher/cipher.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/cipher/e_aes.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/cipher/e_aes.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/cipher/e_aesccm.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/cipher/e_aesccm.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/cipher/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/cipher/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/cmac/cmac.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/cmac/cmac.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/delocate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/delocate.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/dh/check.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/dh/check.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/dh/dh.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/dh/dh.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/dh/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/dh/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/digest/digest.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/digest/digest.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/digest/digests.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/digest/digests.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/digest/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/digest/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/digest/md32_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/digest/md32_common.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/digestsign/digestsign.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/digestsign/digestsign.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/builtin_curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/builtin_curves.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/ec.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/ec.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/ec_key.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/ec_key.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/ec_montgomery.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/ec_montgomery.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/felem.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/felem.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/oct.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/oct.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/p224-64.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/p224-64.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/p256-nistz-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/p256-nistz-table.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/p256-nistz.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/p256-nistz.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/p256-nistz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/p256-nistz.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/p256.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/p256.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/p256_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/p256_table.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/scalar.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/scalar.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/simple.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/simple.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/simple_mul.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/simple_mul.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/util.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/util.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ec/wnaf.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ec/wnaf.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ecdh/ecdh.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ecdh/ecdh.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ecdsa/ecdsa.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ecdsa/ecdsa.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/ecdsa/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/ecdsa/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/fips_shared_support.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/fips_shared_support.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/hkdf/hkdf.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/hkdf/hkdf.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/hmac/hmac.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/hmac/hmac.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/keccak/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/keccak/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/keccak/keccak.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/keccak/keccak.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/mldsa/mldsa.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/mldsa/mldsa.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/mlkem/mlkem.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/mlkem/mlkem.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/rand/ctrdrbg.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/rand/ctrdrbg.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/rand/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/rand/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/rand/rand.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/rand/rand.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/rsa/blinding.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/rsa/blinding.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/rsa/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/rsa/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/rsa/padding.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/rsa/padding.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/rsa/rsa.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/rsa/rsa.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/rsa/rsa_impl.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/rsa/rsa_impl.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/self_check/fips.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/self_check/fips.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/self_check/self_check.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/self_check/self_check.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/service_indicator/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/service_indicator/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/service_indicator/service_indicator.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/service_indicator/service_indicator.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/sha/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/sha/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/sha/sha1.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/sha/sha1.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/sha/sha256.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/sha/sha256.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/sha/sha512.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/sha/sha512.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/address.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/fors.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/fors.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/fors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/fors.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/merkle.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/merkle.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/merkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/merkle.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/params.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/slhdsa.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/slhdsa.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/thash.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/thash.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/thash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/thash.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/wots.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/wots.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/wots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/slhdsa/wots.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/tls/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/tls/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/fipsmodule/tls/kdf.cc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/fipsmodule/tls/kdf.cc.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/hpke/hpke.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/hpke/hpke.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/hrss/asm/poly_rq_mul.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/hrss/asm/poly_rq_mul.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/hrss/hrss.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/hrss/hrss.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/hrss/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/hrss/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/kyber/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/kyber/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/kyber/kyber.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/kyber/kyber.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/lhash/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/lhash/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/lhash/lhash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/lhash/lhash.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/md4/md4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/md4/md4.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/md5/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/md5/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/md5/md5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/md5/md5.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/mem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/mem.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/mldsa/mldsa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/mldsa/mldsa.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/mlkem/mlkem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/mlkem/mlkem.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/obj/obj.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/obj/obj.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/obj/obj_dat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/obj/obj_dat.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/obj/obj_xref.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/obj/obj_xref.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pem/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pem/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pem/pem_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pem/pem_all.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pem/pem_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pem/pem_info.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pem/pem_lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pem/pem_lib.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pem/pem_oth.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pem/pem_oth.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pem/pem_pk8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pem/pem_pk8.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pem/pem_pkey.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pem/pem_pkey.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pem/pem_x509.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pem/pem_x509.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pem/pem_xaux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pem/pem_xaux.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pkcs7/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pkcs7/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pkcs7/pkcs7.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pkcs7/pkcs7.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pkcs7/pkcs7_x509.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pkcs7/pkcs7_x509.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pkcs8/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pkcs8/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pkcs8/p5_pbev2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pkcs8/p5_pbev2.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pkcs8/pkcs8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pkcs8/pkcs8.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pkcs8/pkcs8_x509.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pkcs8/pkcs8_x509.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/poly1305/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/poly1305/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/poly1305/poly1305.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/poly1305/poly1305.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/poly1305/poly1305_arm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/poly1305/poly1305_arm.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/poly1305/poly1305_arm_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/poly1305/poly1305_arm_asm.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/poly1305/poly1305_vec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/poly1305/poly1305_vec.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pool/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pool/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/pool/pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/pool/pool.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rand/deterministic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rand/deterministic.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rand/fork_detect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rand/fork_detect.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rand/forkunsafe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rand/forkunsafe.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rand/getentropy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rand/getentropy.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rand/getrandom_fillin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rand/getrandom_fillin.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rand/ios.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rand/ios.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rand/passive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rand/passive.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rand/rand.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rand/rand.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rand/sysrand_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rand/sysrand_internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rand/trusty.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rand/trusty.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rand/urandom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rand/urandom.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rand/windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rand/windows.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rc4/rc4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rc4/rc4.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/refcount.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/refcount.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rsa/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rsa/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rsa/rsa_asn1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rsa/rsa_asn1.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rsa/rsa_crypt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rsa/rsa_crypt.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rsa/rsa_extra.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rsa/rsa_extra.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/rsa/rsa_print.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/rsa/rsa_print.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/sha/sha1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/sha/sha1.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/sha/sha256.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/sha/sha256.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/sha/sha512.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/sha/sha512.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/siphash/siphash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/siphash/siphash.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/slhdsa/slhdsa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/slhdsa/slhdsa.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/spake2plus/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/spake2plus/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/spake2plus/spake2plus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/spake2plus/spake2plus.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/stack/stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/stack/stack.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/thread.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/thread_none.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/thread_none.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/thread_pthread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/thread_pthread.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/thread_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/thread_win.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/trust_token/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/trust_token/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/trust_token/pmbtoken.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/trust_token/pmbtoken.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/trust_token/trust_token.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/trust_token/trust_token.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/trust_token/voprf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/trust_token/voprf.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/a_digest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/a_digest.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/a_sign.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/a_sign.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/a_verify.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/a_verify.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/algorithm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/algorithm.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/asn1_gen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/asn1_gen.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/by_dir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/by_dir.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/by_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/by_file.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/ext_dat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/ext_dat.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/i2d_pr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/i2d_pr.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/name_print.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/name_print.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/policy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/policy.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/rsa_pss.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/rsa_pss.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/t_crl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/t_crl.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/t_req.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/t_req.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/t_x509.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/t_x509.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/t_x509a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/t_x509a.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_akey.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_akey.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_akeya.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_akeya.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_alt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_alt.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_bcons.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_bcons.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_bitst.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_bitst.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_conf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_conf.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_cpols.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_cpols.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_crld.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_crld.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_enum.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_extku.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_extku.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_genn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_genn.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_ia5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_ia5.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_info.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_int.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_int.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_lib.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_ncons.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_ncons.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_ocsp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_ocsp.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_pcons.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_pcons.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_pmaps.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_pmaps.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_prn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_prn.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_purp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_purp.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_skey.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_skey.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/v3_utl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/v3_utl.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509_att.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509_att.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509_cmp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509_cmp.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509_d2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509_d2.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509_def.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509_def.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509_ext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509_ext.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509_lu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509_lu.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509_obj.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509_obj.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509_req.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509_req.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509_set.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509_trs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509_trs.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509_txt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509_txt.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509_v3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509_v3.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509_vfy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509_vfy.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509_vpm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509_vpm.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509cset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509cset.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509name.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509name.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509rset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509rset.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x509spki.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x509spki.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x_algor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x_algor.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x_all.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x_attrib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x_attrib.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x_crl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x_crl.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x_exten.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x_exten.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x_name.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x_name.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x_pubkey.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x_pubkey.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x_req.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x_req.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x_sig.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x_sig.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x_spki.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x_spki.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x_val.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x_val.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x_x509.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x_x509.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/crypto/x509/x_x509a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/crypto/x509/x_x509a.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx10-x86_64-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx10-x86_64-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx10-x86_64-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx10-x86_64-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/aesni-gcm-x86_64-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/aesni-gcm-x86_64-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/aesni-gcm-x86_64-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/aesni-gcm-x86_64-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/aesni-x86-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/aesni-x86-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/aesni-x86-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/aesni-x86-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/aesni-x86_64-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/aesni-x86_64-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/aesni-x86_64-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/aesni-x86_64-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/aesv8-armv7-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv7-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-win.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-win.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-win.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-win.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/armv4-mont-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/armv4-mont-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/armv8-mont-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/armv8-mont-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/armv8-mont-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/armv8-mont-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/armv8-mont-win.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/armv8-mont-win.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/bn-586-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/bn-586-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/bn-586-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/bn-586-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/bn-armv8-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/bn-armv8-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/bn-armv8-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/bn-armv8-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/bn-armv8-win.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/bn-armv8-win.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/bsaes-armv7-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/bsaes-armv7-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/co-586-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/co-586-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/co-586-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/co-586-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/ghash-armv4-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/ghash-armv4-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-win.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-win.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86_64-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86_64-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86_64-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86_64-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/ghash-x86-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/ghash-x86-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/ghash-x86-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/ghash-x86-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/ghash-x86_64-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/ghash-x86_64-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/ghash-x86_64-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/ghash-x86_64-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv7-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv7-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-win.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-win.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-win.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-win.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/p256-x86_64-asm-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/p256-x86_64-asm-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/p256-x86_64-asm-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/p256-x86_64-asm-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-win.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-win.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/p256_beeu-x86_64-asm-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-x86_64-asm-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/p256_beeu-x86_64-asm-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-x86_64-asm-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/rdrand-x86_64-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/rdrand-x86_64-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/rdrand-x86_64-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/rdrand-x86_64-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/rsaz-avx2-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/rsaz-avx2-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/rsaz-avx2-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/rsaz-avx2-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha1-586-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha1-586-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha1-586-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha1-586-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha1-armv4-large-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha1-armv4-large-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-win.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-win.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha1-x86_64-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha1-x86_64-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha1-x86_64-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha1-x86_64-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha256-586-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha256-586-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha256-586-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha256-586-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha256-armv4-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha256-armv4-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-win.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-win.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha256-x86_64-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha256-x86_64-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha256-x86_64-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha256-x86_64-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha512-586-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha512-586-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha512-586-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha512-586-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha512-armv4-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha512-armv4-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-win.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-win.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha512-x86_64-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha512-x86_64-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/sha512-x86_64-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/sha512-x86_64-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/vpaes-armv7-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv7-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-win.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-win.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/vpaes-x86-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/vpaes-x86-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/vpaes-x86_64-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86_64-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/vpaes-x86_64-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86_64-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/x86-mont-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/x86-mont-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/x86-mont-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/x86-mont-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/x86_64-mont-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/x86_64-mont-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/x86_64-mont5-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont5-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/bcm/x86_64-mont5-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont5-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/aes128gcmsiv-x86_64-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/aes128gcmsiv-x86_64-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/aes128gcmsiv-x86_64-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/aes128gcmsiv-x86_64-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/chacha-armv4-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/chacha-armv4-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-win.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-win.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/chacha-x86-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/chacha-x86-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/chacha-x86-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/chacha-x86-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/chacha-x86_64-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/chacha-x86_64-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/chacha-x86_64-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/chacha-x86_64-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-win.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-win.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_x86_64-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_x86_64-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_x86_64-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_x86_64-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/err_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/err_data.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/md5-586-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/md5-586-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/md5-586-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/md5-586-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/md5-x86_64-apple.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/md5-x86_64-apple.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/gen/crypto/md5-x86_64-linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/gen/crypto/md5-x86_64-linux.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/hash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/hash.txt -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_aead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_aead.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_aes.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_arm_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_arm_arch.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_asm_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_asm_base.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_asn1.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_asn1_mac.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_asn1t.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_base.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_base64.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_bcm_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_bcm_public.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_bio.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_blake2.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_blowfish.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_bn.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_boringssl_prefix_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_boringssl_prefix_symbols.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_boringssl_prefix_symbols_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_boringssl_prefix_symbols_asm.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_buf.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_buffer.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_bytestring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_bytestring.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_cast.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_chacha.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_cipher.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_cmac.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_conf.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_cpu.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_crypto.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_ctrdrbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_ctrdrbg.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_curve25519.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_des.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_dh.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_digest.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_dsa.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_dtls1.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_e_os2.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_ec.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_ec_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_ec_key.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_ecdh.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_ecdsa.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_engine.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_err.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_evp.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_evp_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_evp_errors.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_ex_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_ex_data.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_hkdf.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_hmac.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_hpke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_hpke.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_hrss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_hrss.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_is_boringssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_is_boringssl.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_kdf.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_lhash.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_md4.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_md5.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_mem.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_mldsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_mldsa.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_mlkem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_mlkem.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_nid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_nid.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_obj.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_obj_mac.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_objects.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_opensslconf.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_opensslv.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_ossl_typ.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_pem.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_pkcs12.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_pkcs7.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_pkcs8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_pkcs8.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_poly1305.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_pool.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_posix_time.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_rand.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_rc4.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_ripemd.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_rsa.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_safestack.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_service_indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_service_indicator.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_sha.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_siphash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_siphash.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_slhdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_slhdsa.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_span.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_srtp.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_ssl.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_ssl3.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_stack.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_target.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_thread.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_time.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_tls1.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_trust_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_trust_token.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_type_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_type_check.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_x509.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_x509_vfy.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_x509v3.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/CNIOBoringSSL_x509v3_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/CNIOBoringSSL_x509v3_errors.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/boringssl_prefix_symbols_nasm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/boringssl_prefix_symbols_nasm.inc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/experimental/CNIOBoringSSL_kyber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/experimental/CNIOBoringSSL_kyber.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/include/module.modulemap -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/bio_ssl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/bio_ssl.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/d1_both.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/d1_both.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/d1_lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/d1_lib.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/d1_pkt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/d1_pkt.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/d1_srtp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/d1_srtp.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/dtls_method.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/dtls_method.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/dtls_record.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/dtls_record.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/encrypted_client_hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/encrypted_client_hello.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/extensions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/extensions.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/handoff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/handoff.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/handshake.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/handshake.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/handshake_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/handshake_client.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/handshake_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/handshake_server.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/internal.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/s3_both.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/s3_both.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/s3_lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/s3_lib.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/s3_pkt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/s3_pkt.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/ssl_aead_ctx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/ssl_aead_ctx.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/ssl_asn1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/ssl_asn1.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/ssl_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/ssl_buffer.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/ssl_cert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/ssl_cert.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/ssl_cipher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/ssl_cipher.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/ssl_credential.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/ssl_credential.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/ssl_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/ssl_file.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/ssl_key_share.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/ssl_key_share.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/ssl_lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/ssl_lib.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/ssl_privkey.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/ssl_privkey.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/ssl_session.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/ssl_session.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/ssl_stat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/ssl_stat.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/ssl_transcript.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/ssl_transcript.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/ssl_versions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/ssl_versions.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/ssl_x509.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/ssl_x509.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/t1_enc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/t1_enc.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/tls13_both.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/tls13_both.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/tls13_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/tls13_client.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/tls13_enc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/tls13_enc.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/tls13_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/tls13_server.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/tls_method.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/tls_method.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/ssl/tls_record.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/ssl/tls_record.cc -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_mul.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_mul.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_square.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_square.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_p256_adx_mul.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_p256_adx_mul.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_p256_adx_sqr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_p256_adx_sqr.S -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/third_party/fiat/curve25519_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/third_party/fiat/curve25519_32.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/third_party/fiat/curve25519_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/third_party/fiat/curve25519_64.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/third_party/fiat/curve25519_64_adx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/third_party/fiat/curve25519_64_adx.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/third_party/fiat/curve25519_64_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/third_party/fiat/curve25519_64_msvc.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/third_party/fiat/p256_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/third_party/fiat/p256_32.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/third_party/fiat/p256_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/third_party/fiat/p256_64.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSL/third_party/fiat/p256_64_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSL/third_party/fiat/p256_64_msvc.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSLShims/include/CNIOBoringSSLShims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSLShims/include/CNIOBoringSSLShims.h -------------------------------------------------------------------------------- /Sources/CNIOBoringSSLShims/shims.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/CNIOBoringSSLShims/shims.c -------------------------------------------------------------------------------- /Sources/NIOSSL/AndroidCABundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/AndroidCABundle.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/ByteBufferBIO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/ByteBufferBIO.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/CustomPrivateKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/CustomPrivateKey.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/Docs.docc/TLSConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/Docs.docc/TLSConfiguration.md -------------------------------------------------------------------------------- /Sources/NIOSSL/Docs.docc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/Docs.docc/index.md -------------------------------------------------------------------------------- /Sources/NIOSSL/Docs.docc/quantum-secure-tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/Docs.docc/quantum-secure-tls.md -------------------------------------------------------------------------------- /Sources/NIOSSL/Docs.docc/trust-roots-behavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/Docs.docc/trust-roots-behavior.md -------------------------------------------------------------------------------- /Sources/NIOSSL/IdentityVerification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/IdentityVerification.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/LinuxCABundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/LinuxCABundle.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/NIOSSLClientHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/NIOSSLClientHandler.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/NIOSSLHandler+Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/NIOSSLHandler+Configuration.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/NIOSSLHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/NIOSSLHandler.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/NIOSSLServerHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/NIOSSLServerHandler.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/ObjectIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/ObjectIdentifier.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/PosixPort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/PosixPort.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Sources/NIOSSL/SSLCallbacks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/SSLCallbacks.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/SSLCertificate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/SSLCertificate.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/SSLCertificateExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/SSLCertificateExtensions.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/SSLCertificateName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/SSLCertificateName.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/SSLConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/SSLConnection.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/SSLContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/SSLContext.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/SSLErrors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/SSLErrors.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/SSLInit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/SSLInit.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/SSLPKCS12Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/SSLPKCS12Bundle.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/SSLPrivateKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/SSLPrivateKey.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/SSLPublicKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/SSLPublicKey.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/SecurityFrameworkCertificateVerification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/SecurityFrameworkCertificateVerification.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/String+unsafeUninitializedCapacity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/String+unsafeUninitializedCapacity.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/SubjectAlternativeName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/SubjectAlternativeName.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/SwiftCrypto/NIOSSLSecureBytes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/SwiftCrypto/NIOSSLSecureBytes.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/SwiftCrypto/RNG.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/SwiftCrypto/RNG.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/SwiftCrypto/SafeCompare.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/SwiftCrypto/SafeCompare.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/SwiftCrypto/Zeroization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/SwiftCrypto/Zeroization.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/TLSConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/TLSConfiguration.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/UniversalBootstrapSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/UniversalBootstrapSupport.swift -------------------------------------------------------------------------------- /Sources/NIOSSL/UnsafeKeyAndChainTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSL/UnsafeKeyAndChainTarget.swift -------------------------------------------------------------------------------- /Sources/NIOSSLHTTP1Client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSLHTTP1Client/README.md -------------------------------------------------------------------------------- /Sources/NIOSSLHTTP1Client/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSLHTTP1Client/main.swift -------------------------------------------------------------------------------- /Sources/NIOSSLPerformanceTester/BenchManyWrites.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSLPerformanceTester/BenchManyWrites.swift -------------------------------------------------------------------------------- /Sources/NIOSSLPerformanceTester/BenchRepeatedHandshakes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSLPerformanceTester/BenchRepeatedHandshakes.swift -------------------------------------------------------------------------------- /Sources/NIOSSLPerformanceTester/Benchmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSLPerformanceTester/Benchmark.swift -------------------------------------------------------------------------------- /Sources/NIOSSLPerformanceTester/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSLPerformanceTester/main.swift -------------------------------------------------------------------------------- /Sources/NIOSSLPerformanceTester/shared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOSSLPerformanceTester/shared.swift -------------------------------------------------------------------------------- /Sources/NIOTLSServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOTLSServer/README.md -------------------------------------------------------------------------------- /Sources/NIOTLSServer/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Sources/NIOTLSServer/main.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/ByteBufferBIOTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/ByteBufferBIOTest.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/CertificateVerificationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/CertificateVerificationTests.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/ClientSNITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/ClientSNITests.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/CustomPrivateKeyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/CustomPrivateKeyTests.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/IdentityVerificationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/IdentityVerificationTest.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/NIOSSLALPNTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/NIOSSLALPNTest.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/NIOSSLIntegrationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/NIOSSLIntegrationTest.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/NIOSSLSecureBytesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/NIOSSLSecureBytesTests.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/NIOSSLTestHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/NIOSSLTestHelpers.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/ObjectIdentifierTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/ObjectIdentifierTests.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/SSLCertificateExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/SSLCertificateExtensionsTests.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/SSLCertificateTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/SSLCertificateTest.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/SSLContextTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/SSLContextTests.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/SSLPKCS12BundleTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/SSLPKCS12BundleTest.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/SSLPrivateKeyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/SSLPrivateKeyTests.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/SecurityFrameworkVerificationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/SecurityFrameworkVerificationTests.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/TLS13RecordObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/TLS13RecordObserver.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/TLSConfigurationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/TLSConfigurationTest.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/UnsafeTransfer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/UnsafeTransfer.swift -------------------------------------------------------------------------------- /Tests/NIOSSLTests/UnwrappingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/Tests/NIOSSLTests/UnwrappingTests.swift -------------------------------------------------------------------------------- /dev/git.commit.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/dev/git.commit.template -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/docker-compose.2204.510.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/docker/docker-compose.2204.510.yaml -------------------------------------------------------------------------------- /docker/docker-compose.2204.58.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/docker/docker-compose.2204.58.yaml -------------------------------------------------------------------------------- /docker/docker-compose.2204.59.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/docker/docker-compose.2204.59.yaml -------------------------------------------------------------------------------- /docker/docker-compose.2204.main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/docker/docker-compose.2204.main.yaml -------------------------------------------------------------------------------- /docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/docker/docker-compose.yaml -------------------------------------------------------------------------------- /scripts/analyze_performance_results.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/scripts/analyze_performance_results.rb -------------------------------------------------------------------------------- /scripts/build-asm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/scripts/build-asm.py -------------------------------------------------------------------------------- /scripts/integration_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/scripts/integration_tests.sh -------------------------------------------------------------------------------- /scripts/patch-1-inttypes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/scripts/patch-1-inttypes.patch -------------------------------------------------------------------------------- /scripts/patch-2-inttypes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/scripts/patch-2-inttypes.patch -------------------------------------------------------------------------------- /scripts/patch-3-more-inttypes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/scripts/patch-3-more-inttypes.patch -------------------------------------------------------------------------------- /scripts/vendor-boringssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/swift-nio-ssl/HEAD/scripts/vendor-boringssl.sh --------------------------------------------------------------------------------