├── .devcontainer ├── Dockerfile ├── devcontainer.json └── startup.sh ├── .github ├── actions │ ├── read-repo-config │ │ └── action.yml │ └── setup-build-agent │ │ └── action.yml ├── codecov.yml └── workflows │ ├── ci.yml │ ├── cifuzz.yml │ ├── codeql.yml │ └── nightly.yml ├── .gitignore ├── configure.py ├── doc ├── abi.rst ├── api_ref │ ├── bigint.rst │ ├── block_cipher.rst │ ├── cipher_modes.rst │ ├── compression.rst │ ├── contents.rst │ ├── credentials_manager.rst │ ├── cryptobox.rst │ ├── ec_group.rst │ ├── ecc.rst │ ├── env_vars.rst │ ├── ffi.rst │ ├── filters.rst │ ├── footguns.rst │ ├── fpe.rst │ ├── hash.rst │ ├── kdf.rst │ ├── keywrap.rst │ ├── message_auth_codes.rst │ ├── otp.rst │ ├── passhash.rst │ ├── pbkdf.rst │ ├── pkcs11.rst │ ├── providers.rst │ ├── psk_db.rst │ ├── pubkey.rst │ ├── python.rst │ ├── rng.rst │ ├── roughtime.rst │ ├── secmem.rst │ ├── sodium.rst │ ├── srp.rst │ ├── stream_ciphers.rst │ ├── tls.rst │ ├── tpm.rst │ ├── tss.rst │ ├── versions.rst │ ├── x509.rst │ └── zfec.rst ├── authors.txt ├── building.rst ├── cli.rst ├── contents.rst ├── credits.rst ├── deprecated.rst ├── dev_ref │ ├── configure.rst │ ├── contents.rst │ ├── continuous_integration.rst │ ├── contributing.rst │ ├── fuzzing.rst │ ├── mistakes.rst │ ├── next_major.rst │ ├── oids.rst │ ├── os.rst │ ├── pcurves.rst │ ├── reading_list.rst │ ├── release_process.rst │ ├── test_framework.rst │ └── todo.rst ├── goals.rst ├── hardware_acceleration.rst ├── index.rst ├── migration_guide.rst ├── news_2x.rst ├── old_news.rst ├── openssl_migration_guide.rst ├── packaging.rst ├── pgpkey.txt ├── roadmap.rst ├── security.rst ├── sem_ver.rst ├── side_channels.rst ├── support.rst └── threat_model.rst ├── license.txt ├── news.rst ├── readme.rst └── src ├── .clang-tidy ├── bogo_shim ├── bogo_shim.cpp └── config.json ├── build-data ├── arch │ ├── alpha.txt │ ├── arm32.txt │ ├── arm64.txt │ ├── generic.txt │ ├── hppa.txt │ ├── ia64.txt │ ├── llvm.txt │ ├── loongarch64.txt │ ├── m68k.txt │ ├── mips32.txt │ ├── mips64.txt │ ├── powerpcspe.txt │ ├── ppc32.txt │ ├── ppc64.txt │ ├── riscv32.txt │ ├── riscv64.txt │ ├── s390.txt │ ├── s390x.txt │ ├── sparc32.txt │ ├── sparc64.txt │ ├── superh.txt │ ├── wasm.txt │ ├── x32.txt │ ├── x86_32.txt │ └── x86_64.txt ├── botan-config-version.cmake.in ├── botan-config.cmake.in ├── botan.doxy.in ├── botan.pc.in ├── buildh.in ├── cc │ ├── clang.txt │ ├── clangcl.txt │ ├── emcc.txt │ ├── gcc.txt │ ├── icc.txt │ ├── msvc.txt │ ├── sunstudio.txt │ ├── xcode.txt │ └── xlc.txt ├── compile_commands.json.in ├── detect_arch.cpp ├── detect_version.cpp ├── ec_groups.txt ├── makefile.in ├── module_info.in ├── ninja.in ├── oids.txt ├── os │ ├── aix.txt │ ├── android.txt │ ├── cygwin.txt │ ├── dragonfly.txt │ ├── emscripten.txt │ ├── freebsd.txt │ ├── generic.txt │ ├── haiku.txt │ ├── hpux.txt │ ├── hurd.txt │ ├── ios.txt │ ├── linux.txt │ ├── llvm.txt │ ├── macos.txt │ ├── mingw.txt │ ├── netbsd.txt │ ├── none.txt │ ├── openbsd.txt │ ├── qnx.txt │ ├── solaris.txt │ ├── uwp.txt │ └── windows.txt ├── policy │ ├── bsi.txt │ ├── fips140.txt │ └── modern.txt ├── target_info.h.in ├── templates │ ├── ec_named.cpp.in │ ├── pcurves.cpp.in │ ├── pcurves_instance.h.in │ ├── pcurves_stub.cpp.in │ └── static_oids.cpp.in ├── version.txt └── version_info.h.in ├── cli ├── argon2.cpp ├── argparse.h ├── asn1.cpp ├── bcrypt.cpp ├── cc_enc.cpp ├── cipher.cpp ├── cli.cpp ├── cli.h ├── cli_exceptions.h ├── cli_rng.cpp ├── codec.cpp ├── compress.cpp ├── entropy.cpp ├── hash.cpp ├── hmac.cpp ├── main.cpp ├── math.cpp ├── pbkdf.cpp ├── perf.cpp ├── perf.h ├── perf_ec.cpp ├── perf_math.cpp ├── perf_misc.cpp ├── perf_pk_enc.cpp ├── perf_pk_ka.cpp ├── perf_pk_kem.cpp ├── perf_pk_misc.cpp ├── perf_pk_sig.cpp ├── perf_pwdhash.cpp ├── perf_rng.cpp ├── perf_sym.cpp ├── perf_x509.cpp ├── pk_crypt.cpp ├── psk.cpp ├── pubkey.cpp ├── roughtime.cpp ├── sandbox.cpp ├── sandbox.h ├── socket_utils.h ├── speed.cpp ├── timer.cpp ├── timer.h ├── timing_tests.cpp ├── tls_client.cpp ├── tls_helpers.h ├── tls_http_server.cpp ├── tls_proxy.cpp ├── tls_server.cpp ├── tls_utils.cpp ├── tss.cpp ├── utils.cpp ├── x509.cpp └── zfec.cpp ├── configs ├── clang-format ├── codeql.yml ├── coverage.rc ├── eclipse.xml ├── git-blame-ignore-revs ├── pylint.rc ├── repo_config.env ├── sonar-project.properties ├── sphinx │ ├── conf.py │ └── templates │ │ └── layout.html └── typos.toml ├── ct_selftest ├── ct_selftest.cpp └── ct_selftest.py ├── editors ├── README.md ├── editorconfig ├── emacs.el └── vscode │ ├── botan.code-snippets │ ├── extensions.json │ ├── launch.json │ ├── scripts │ ├── bogo.py │ ├── common.py │ └── test.py │ ├── settings.json │ └── tasks.json ├── examples ├── aes.cpp ├── aes_cbc.cpp ├── amalgamation_header.cpp ├── chacha.cpp ├── check_key.cpp ├── cmac.cpp ├── custom_system_rng.cpp ├── dl_group.cpp ├── ecc_raw_private_key.cpp ├── ecc_raw_public_key.cpp ├── ecdh.cpp ├── ecdsa.cpp ├── entropy.cpp ├── ffi.c ├── fpe_alnum.cpp ├── fpe_dictionary.cpp ├── gmac.cpp ├── hash.cpp ├── hmac.cpp ├── hybrid_encryption.cpp ├── hybrid_key_encapsulation.cpp ├── kdf.cpp ├── ml_kem.cpp ├── password_encryption.cpp ├── pkcs10_csr_on_tpm2.cpp ├── pkcs11_ecdh.cpp ├── pkcs11_ecdsa.cpp ├── pkcs11_low_level.cpp ├── pkcs11_module.cpp ├── pkcs11_objects.cpp ├── pkcs11_rng.cpp ├── pkcs11_rsa.cpp ├── pkcs11_session.cpp ├── pkcs11_slot.cpp ├── pkcs11_token_management.cpp ├── pkcs11_x509.cpp ├── pwdhash.cpp ├── rsa_encrypt.cpp ├── tls_13_hybrid_key_exchange_client.cpp ├── tls_client.cpp ├── tls_custom_curves_client.cpp ├── tls_proxy.cpp ├── tls_ssl_key_log_file.cpp ├── tls_stream_client.cpp ├── tls_stream_coroutine_client.cpp ├── x509_path.cpp └── xmss.cpp ├── fuzzer ├── asn1.cpp ├── barrett.cpp ├── bn_cmp.cpp ├── bn_sqr.cpp ├── cert.cpp ├── crl.cpp ├── divide.cpp ├── ecc_bp256.cpp ├── ecc_helper.h ├── ecc_p256.cpp ├── ecc_p384.cpp ├── ecc_p521.cpp ├── fuzzers.h ├── gcd.cpp ├── invert.cpp ├── ipv4.cpp ├── mem_pool.cpp ├── mode_padding.cpp ├── mp_comba_mul.cpp ├── mp_comba_sqr.cpp ├── mp_fuzzers.h ├── mp_redc.cpp ├── mp_redc_crandall.cpp ├── oaep.cpp ├── ocsp.cpp ├── os2ecp.cpp ├── pkcs1.cpp ├── pkcs8.cpp ├── pow_mod.cpp ├── ressol.cpp ├── tls_13_handshake_layer.cpp ├── tls_client.cpp ├── tls_client_hello.cpp ├── tls_server.cpp ├── uri.cpp ├── x509_dn.cpp └── x509_path.cpp ├── lib ├── asn1 │ ├── alg_id.cpp │ ├── asn1_obj.cpp │ ├── asn1_obj.h │ ├── asn1_oid.cpp │ ├── asn1_print.cpp │ ├── asn1_print.h │ ├── asn1_str.cpp │ ├── asn1_time.cpp │ ├── ber_dec.cpp │ ├── ber_dec.h │ ├── der_enc.cpp │ ├── der_enc.h │ ├── info.txt │ ├── oid_map.cpp │ ├── oid_map.h │ ├── oids.cpp │ ├── oids.h │ ├── pss_params.cpp │ ├── pss_params.h │ └── static_oids.cpp ├── base │ ├── buf_comp.cpp │ ├── buf_comp.h │ ├── info.txt │ ├── secmem.h │ ├── sym_algo.cpp │ ├── sym_algo.h │ ├── symkey.cpp │ └── symkey.h ├── block │ ├── aes │ │ ├── aes.cpp │ │ ├── aes.h │ │ ├── aes_armv8 │ │ │ ├── aes_armv8.cpp │ │ │ └── info.txt │ │ ├── aes_ni │ │ │ ├── aes_ni.cpp │ │ │ └── info.txt │ │ ├── aes_power8 │ │ │ ├── aes_power8.cpp │ │ │ └── info.txt │ │ ├── aes_vaes │ │ │ ├── aes_vaes.cpp │ │ │ └── info.txt │ │ ├── aes_vperm │ │ │ ├── aes_vperm.cpp │ │ │ └── info.txt │ │ └── info.txt │ ├── aria │ │ ├── aria.cpp │ │ ├── aria.h │ │ └── info.txt │ ├── block_cipher.cpp │ ├── block_cipher.h │ ├── blowfish │ │ ├── blowfish.cpp │ │ ├── blowfish.h │ │ └── info.txt │ ├── camellia │ │ ├── camellia.cpp │ │ ├── camellia.h │ │ ├── camellia_gfni │ │ │ ├── camellia_gfni.cpp │ │ │ ├── camellia_gfni.h │ │ │ └── info.txt │ │ └── info.txt │ ├── cascade │ │ ├── cascade.cpp │ │ ├── cascade.h │ │ └── info.txt │ ├── cast128 │ │ ├── cast128.cpp │ │ ├── cast128.h │ │ └── info.txt │ ├── des │ │ ├── des.cpp │ │ ├── des.h │ │ └── info.txt │ ├── gost_28147 │ │ ├── gost_28147.cpp │ │ ├── gost_28147.h │ │ └── info.txt │ ├── idea │ │ ├── idea.cpp │ │ ├── idea.h │ │ ├── idea_sse2 │ │ │ ├── idea_sse2.cpp │ │ │ └── info.txt │ │ └── info.txt │ ├── info.txt │ ├── kuznyechik │ │ ├── info.txt │ │ ├── kuznyechik.cpp │ │ └── kuznyechik.h │ ├── lion │ │ ├── info.txt │ │ ├── lion.cpp │ │ └── lion.h │ ├── noekeon │ │ ├── info.txt │ │ ├── noekeon.cpp │ │ ├── noekeon.h │ │ └── noekeon_simd │ │ │ ├── info.txt │ │ │ └── noekeon_simd.cpp │ ├── seed │ │ ├── info.txt │ │ ├── seed.cpp │ │ └── seed.h │ ├── serpent │ │ ├── info.txt │ │ ├── serpent.cpp │ │ ├── serpent.h │ │ ├── serpent_avx2 │ │ │ ├── info.txt │ │ │ └── serpent_avx2.cpp │ │ ├── serpent_avx512 │ │ │ ├── info.txt │ │ │ └── serpent_avx512.cpp │ │ ├── serpent_fn.h │ │ ├── serpent_sbox.h │ │ └── serpent_simd │ │ │ ├── info.txt │ │ │ └── serpent_simd.cpp │ ├── shacal2 │ │ ├── info.txt │ │ ├── shacal2.cpp │ │ ├── shacal2.h │ │ ├── shacal2_armv8 │ │ │ ├── info.txt │ │ │ └── shacal2_arvm8.cpp │ │ ├── shacal2_avx2 │ │ │ ├── info.txt │ │ │ └── shacal2_avx2.cpp │ │ ├── shacal2_avx512 │ │ │ ├── info.txt │ │ │ └── shacal2_avx512.cpp │ │ ├── shacal2_simd │ │ │ ├── info.txt │ │ │ └── shacal2_simd.cpp │ │ └── shacal2_x86 │ │ │ ├── info.txt │ │ │ └── shacal2_x86.cpp │ ├── sm4 │ │ ├── info.txt │ │ ├── sm4.cpp │ │ ├── sm4.h │ │ ├── sm4_armv8 │ │ │ ├── info.txt │ │ │ └── sm4_armv8.cpp │ │ ├── sm4_gfni │ │ │ ├── info.txt │ │ │ └── sm4_gfni.cpp │ │ └── sm4_x86 │ │ │ ├── info.txt │ │ │ └── sm4_x86.cpp │ ├── threefish_512 │ │ ├── info.txt │ │ ├── threefish_512.cpp │ │ └── threefish_512.h │ └── twofish │ │ ├── info.txt │ │ ├── twofish.cpp │ │ ├── twofish.h │ │ └── twofish_tab.cpp ├── codec │ ├── base32 │ │ ├── base32.cpp │ │ ├── base32.h │ │ └── info.txt │ ├── base58 │ │ ├── base58.cpp │ │ ├── base58.h │ │ └── info.txt │ ├── base64 │ │ ├── base64.cpp │ │ ├── base64.h │ │ └── info.txt │ ├── hex │ │ ├── hex.cpp │ │ ├── hex.h │ │ └── info.txt │ └── info.txt ├── compat │ ├── info.txt │ └── sodium │ │ ├── info.txt │ │ ├── sodium.h │ │ ├── sodium_25519.cpp │ │ ├── sodium_aead.cpp │ │ ├── sodium_auth.cpp │ │ ├── sodium_box.cpp │ │ ├── sodium_chacha.cpp │ │ ├── sodium_salsa.cpp │ │ ├── sodium_secretbox.cpp │ │ └── sodium_utils.cpp ├── compression │ ├── bzip2 │ │ ├── bzip2.cpp │ │ ├── bzip2.h │ │ └── info.txt │ ├── compress_utils.cpp │ ├── compress_utils.h │ ├── compression.cpp │ ├── compression.h │ ├── info.txt │ ├── lzma │ │ ├── info.txt │ │ ├── lzma.cpp │ │ └── lzma.h │ └── zlib │ │ ├── info.txt │ │ ├── zlib.cpp │ │ └── zlib.h ├── entropy │ ├── entropy_src.h │ ├── entropy_srcs.cpp │ ├── getentropy │ │ ├── getentropy.cpp │ │ ├── getentropy.h │ │ └── info.txt │ ├── info.txt │ ├── rdseed │ │ ├── info.txt │ │ ├── rdseed.cpp │ │ └── rdseed.h │ └── win32_stats │ │ ├── es_win32.cpp │ │ ├── es_win32.h │ │ └── info.txt ├── ffi │ ├── ffi.cpp │ ├── ffi.h │ ├── ffi_block.cpp │ ├── ffi_cert.cpp │ ├── ffi_cipher.cpp │ ├── ffi_ec.cpp │ ├── ffi_ec.h │ ├── ffi_fpe.cpp │ ├── ffi_hash.cpp │ ├── ffi_hotp.cpp │ ├── ffi_kdf.cpp │ ├── ffi_keywrap.cpp │ ├── ffi_mac.cpp │ ├── ffi_mp.cpp │ ├── ffi_mp.h │ ├── ffi_oid.cpp │ ├── ffi_oid.h │ ├── ffi_pk_op.cpp │ ├── ffi_pkey.cpp │ ├── ffi_pkey.h │ ├── ffi_pkey_algs.cpp │ ├── ffi_rng.cpp │ ├── ffi_rng.h │ ├── ffi_srp6.cpp │ ├── ffi_totp.cpp │ ├── ffi_tpm2.cpp │ ├── ffi_util.h │ ├── ffi_zfec.cpp │ └── info.txt ├── filters │ ├── algo_filt.cpp │ ├── b64_filt.cpp │ ├── basefilt.cpp │ ├── buf_filt.cpp │ ├── cipher_filter.cpp │ ├── comp_filter.cpp │ ├── data_snk.cpp │ ├── data_snk.h │ ├── fd_unix │ │ ├── fd_unix.cpp │ │ ├── fd_unix.h │ │ └── info.txt │ ├── filter.cpp │ ├── filter.h │ ├── filters.h │ ├── hex_filt.cpp │ ├── info.txt │ ├── out_buf.cpp │ ├── out_buf.h │ ├── pipe.cpp │ ├── pipe.h │ ├── pipe_io.cpp │ ├── pipe_rw.cpp │ ├── secqueue.cpp │ ├── secqueue.h │ └── threaded_fork.cpp ├── hash │ ├── ascon_hash256 │ │ ├── ascon_hash256.cpp │ │ ├── ascon_hash256.h │ │ └── info.txt │ ├── blake2 │ │ ├── blake2b.cpp │ │ ├── blake2b.h │ │ └── info.txt │ ├── blake2s │ │ ├── blake2s.cpp │ │ ├── blake2s.h │ │ └── info.txt │ ├── checksum │ │ ├── adler32 │ │ │ ├── adler32.cpp │ │ │ ├── adler32.h │ │ │ └── info.txt │ │ ├── crc24 │ │ │ ├── crc24.cpp │ │ │ ├── crc24.h │ │ │ └── info.txt │ │ ├── crc32 │ │ │ ├── crc32.cpp │ │ │ ├── crc32.h │ │ │ └── info.txt │ │ └── info.txt │ ├── comb4p │ │ ├── comb4p.cpp │ │ ├── comb4p.h │ │ └── info.txt │ ├── gost_3411 │ │ ├── gost_3411.cpp │ │ ├── gost_3411.h │ │ └── info.txt │ ├── hash.cpp │ ├── hash.h │ ├── info.txt │ ├── keccak │ │ ├── info.txt │ │ ├── keccak.cpp │ │ └── keccak.h │ ├── md4 │ │ ├── info.txt │ │ ├── md4.cpp │ │ └── md4.h │ ├── md5 │ │ ├── info.txt │ │ ├── md5.cpp │ │ └── md5.h │ ├── mdx_hash │ │ ├── info.txt │ │ └── mdx_hash.h │ ├── par_hash │ │ ├── info.txt │ │ ├── par_hash.cpp │ │ └── par_hash.h │ ├── rmd160 │ │ ├── info.txt │ │ ├── rmd160.cpp │ │ └── rmd160.h │ ├── sha1 │ │ ├── info.txt │ │ ├── sha1.cpp │ │ ├── sha1.h │ │ ├── sha1_armv8 │ │ │ ├── info.txt │ │ │ └── sha1_armv8.cpp │ │ ├── sha1_avx2 │ │ │ ├── info.txt │ │ │ └── sha1_avx2.cpp │ │ ├── sha1_f.h │ │ ├── sha1_simd │ │ │ ├── info.txt │ │ │ └── sha1_simd.cpp │ │ └── sha1_x86 │ │ │ ├── info.txt │ │ │ └── sha1_x86.cpp │ ├── sha2_32 │ │ ├── info.txt │ │ ├── sha2_32.cpp │ │ ├── sha2_32.h │ │ ├── sha2_32_armv8 │ │ │ ├── info.txt │ │ │ └── sha2_32_armv8.cpp │ │ ├── sha2_32_avx2 │ │ │ ├── info.txt │ │ │ └── sha2_32_avx2.cpp │ │ ├── sha2_32_f.h │ │ ├── sha2_32_simd │ │ │ ├── info.txt │ │ │ └── sha2_32_simd.cpp │ │ └── sha2_32_x86 │ │ │ ├── info.txt │ │ │ └── sha2_32_x86.cpp │ ├── sha2_64 │ │ ├── info.txt │ │ ├── sha2_64.cpp │ │ ├── sha2_64.h │ │ ├── sha2_64_armv8 │ │ │ ├── info.txt │ │ │ └── sha2_64_armv8.cpp │ │ ├── sha2_64_avx2 │ │ │ ├── info.txt │ │ │ └── sha2_64_avx2.cpp │ │ ├── sha2_64_avx512 │ │ │ ├── info.txt │ │ │ └── sha2_64_avx512.cpp │ │ ├── sha2_64_f.h │ │ └── sha2_64_x86 │ │ │ ├── info.txt │ │ │ └── sha2_64_x86.cpp │ ├── sha3 │ │ ├── info.txt │ │ ├── sha3.cpp │ │ └── sha3.h │ ├── shake │ │ ├── info.txt │ │ ├── shake.cpp │ │ └── shake.h │ ├── skein │ │ ├── info.txt │ │ ├── skein_512.cpp │ │ └── skein_512.h │ ├── sm3 │ │ ├── info.txt │ │ ├── sm3.cpp │ │ └── sm3.h │ ├── streebog │ │ ├── info.txt │ │ ├── streebog.cpp │ │ ├── streebog.h │ │ └── streebog_precalc.cpp │ ├── trunc_hash │ │ ├── info.txt │ │ ├── trunc_hash.cpp │ │ └── trunc_hash.h │ └── whirlpool │ │ ├── info.txt │ │ ├── whirlpool.cpp │ │ └── whirlpool.h ├── kdf │ ├── hkdf │ │ ├── hkdf.cpp │ │ ├── hkdf.h │ │ └── info.txt │ ├── info.txt │ ├── kdf.cpp │ ├── kdf.h │ ├── kdf1 │ │ ├── info.txt │ │ ├── kdf1.cpp │ │ └── kdf1.h │ ├── kdf1_iso18033 │ │ ├── info.txt │ │ ├── kdf1_iso18033.cpp │ │ └── kdf1_iso18033.h │ ├── kdf2 │ │ ├── info.txt │ │ ├── kdf2.cpp │ │ └── kdf2.h │ ├── prf_tls │ │ ├── info.txt │ │ ├── prf_tls.cpp │ │ └── prf_tls.h │ ├── prf_x942 │ │ ├── info.txt │ │ ├── prf_x942.cpp │ │ └── prf_x942.h │ ├── sp800_108 │ │ ├── info.txt │ │ ├── sp800_108.cpp │ │ └── sp800_108.h │ ├── sp800_56a │ │ ├── info.txt │ │ ├── sp800_56c_one_step.cpp │ │ └── sp800_56c_one_step.h │ ├── sp800_56c │ │ ├── info.txt │ │ ├── sp800_56c_two_step.cpp │ │ └── sp800_56c_two_step.h │ └── xmd │ │ ├── info.txt │ │ ├── xmd.cpp │ │ └── xmd.h ├── mac │ ├── blake2mac │ │ ├── blake2bmac.cpp │ │ ├── blake2bmac.h │ │ └── info.txt │ ├── cmac │ │ ├── cmac.cpp │ │ ├── cmac.h │ │ └── info.txt │ ├── gmac │ │ ├── gmac.cpp │ │ ├── gmac.h │ │ └── info.txt │ ├── hmac │ │ ├── hmac.cpp │ │ ├── hmac.h │ │ └── info.txt │ ├── info.txt │ ├── kmac │ │ ├── info.txt │ │ ├── kmac.cpp │ │ └── kmac.h │ ├── mac.cpp │ ├── mac.h │ ├── poly1305 │ │ ├── info.txt │ │ ├── poly1305.cpp │ │ └── poly1305.h │ ├── siphash │ │ ├── info.txt │ │ ├── siphash.cpp │ │ └── siphash.h │ └── x919_mac │ │ ├── info.txt │ │ ├── x919_mac.cpp │ │ └── x919_mac.h ├── math │ ├── bigint │ │ ├── big_code.cpp │ │ ├── big_io.cpp │ │ ├── big_ops2.cpp │ │ ├── big_ops3.cpp │ │ ├── big_rand.cpp │ │ ├── bigint.cpp │ │ ├── bigint.h │ │ ├── divide.cpp │ │ ├── divide.h │ │ └── info.txt │ ├── info.txt │ ├── mp │ │ ├── info.txt │ │ ├── mp_asmi.h │ │ ├── mp_comba.cpp │ │ ├── mp_core.h │ │ ├── mp_karat.cpp │ │ ├── mp_monty.cpp │ │ └── mp_monty_n.cpp │ ├── numbertheory │ │ ├── barrett.cpp │ │ ├── barrett.h │ │ ├── dsa_gen.cpp │ │ ├── info.txt │ │ ├── make_prm.cpp │ │ ├── mod_inv.cpp │ │ ├── mod_inv.h │ │ ├── monty.cpp │ │ ├── monty.h │ │ ├── monty_exp.cpp │ │ ├── monty_exp.h │ │ ├── numthry.cpp │ │ ├── numthry.h │ │ ├── primality.cpp │ │ ├── primality.h │ │ ├── primes.cpp │ │ ├── reducer.cpp │ │ └── reducer.h │ └── pcurves │ │ ├── info.txt │ │ ├── pcurves.cpp │ │ ├── pcurves.h │ │ ├── pcurves_algos.h │ │ ├── pcurves_brainpool256r1 │ │ ├── info.txt │ │ └── pcurves_brainpool256r1.cpp │ │ ├── pcurves_brainpool384r1 │ │ ├── info.txt │ │ └── pcurves_brainpool384r1.cpp │ │ ├── pcurves_brainpool512r1 │ │ ├── info.txt │ │ └── pcurves_brainpool512r1.cpp │ │ ├── pcurves_frp256v1 │ │ ├── info.txt │ │ └── pcurves_frp256v1.cpp │ │ ├── pcurves_generic │ │ ├── info.txt │ │ ├── pcurves_generic.cpp │ │ └── pcurves_generic.h │ │ ├── pcurves_impl │ │ ├── info.txt │ │ ├── pcurves_impl.h │ │ ├── pcurves_solinas.h │ │ ├── pcurves_util.h │ │ └── pcurves_wrap.h │ │ ├── pcurves_instance.h │ │ ├── pcurves_mul.h │ │ ├── pcurves_numsp512d1 │ │ ├── info.txt │ │ └── pcurves_numsp512d1.cpp │ │ ├── pcurves_secp192r1 │ │ ├── info.txt │ │ └── pcurves_secp192r1.cpp │ │ ├── pcurves_secp224r1 │ │ ├── info.txt │ │ └── pcurves_secp224r1.cpp │ │ ├── pcurves_secp256k1 │ │ ├── info.txt │ │ └── pcurves_secp256k1.cpp │ │ ├── pcurves_secp256r1 │ │ ├── info.txt │ │ └── pcurves_secp256r1.cpp │ │ ├── pcurves_secp384r1 │ │ ├── info.txt │ │ └── pcurves_secp384r1.cpp │ │ ├── pcurves_secp521r1 │ │ ├── info.txt │ │ └── pcurves_secp521r1.cpp │ │ └── pcurves_sm2p256v1 │ │ ├── info.txt │ │ └── pcurves_sm2p256v1.cpp ├── misc │ ├── cryptobox │ │ ├── cryptobox.cpp │ │ ├── cryptobox.h │ │ └── info.txt │ ├── fpe_fe1 │ │ ├── fpe_fe1.cpp │ │ ├── fpe_fe1.h │ │ └── info.txt │ ├── hotp │ │ ├── hotp.cpp │ │ ├── info.txt │ │ ├── otp.h │ │ └── totp.cpp │ ├── info.txt │ ├── nist_keywrap │ │ ├── info.txt │ │ ├── nist_keywrap.cpp │ │ └── nist_keywrap.h │ ├── rfc3394 │ │ ├── info.txt │ │ ├── rfc3394.cpp │ │ └── rfc3394.h │ ├── roughtime │ │ ├── info.txt │ │ ├── roughtime.cpp │ │ └── roughtime.h │ ├── srp6 │ │ ├── info.txt │ │ ├── srp6.cpp │ │ └── srp6.h │ ├── tss │ │ ├── info.txt │ │ ├── tss.cpp │ │ └── tss.h │ └── zfec │ │ ├── info.txt │ │ ├── zfec.cpp │ │ ├── zfec.h │ │ ├── zfec_sse2 │ │ ├── info.txt │ │ └── zfec_sse2.cpp │ │ └── zfec_vperm │ │ ├── info.txt │ │ └── zfec_vperm.cpp ├── modes │ ├── aead │ │ ├── aead.cpp │ │ ├── aead.h │ │ ├── ascon_aead128 │ │ │ ├── ascon_aead128.cpp │ │ │ ├── ascon_aead128.h │ │ │ └── info.txt │ │ ├── ccm │ │ │ ├── ccm.cpp │ │ │ ├── ccm.h │ │ │ └── info.txt │ │ ├── chacha20poly1305 │ │ │ ├── chacha20poly1305.cpp │ │ │ ├── chacha20poly1305.h │ │ │ └── info.txt │ │ ├── eax │ │ │ ├── eax.cpp │ │ │ ├── eax.h │ │ │ └── info.txt │ │ ├── gcm │ │ │ ├── gcm.cpp │ │ │ ├── gcm.h │ │ │ └── info.txt │ │ ├── info.txt │ │ ├── ocb │ │ │ ├── info.txt │ │ │ ├── ocb.cpp │ │ │ └── ocb.h │ │ └── siv │ │ │ ├── info.txt │ │ │ ├── siv.cpp │ │ │ └── siv.h │ ├── cbc │ │ ├── cbc.cpp │ │ ├── cbc.h │ │ └── info.txt │ ├── cfb │ │ ├── cfb.cpp │ │ ├── cfb.h │ │ └── info.txt │ ├── cipher_mode.cpp │ ├── cipher_mode.h │ ├── info.txt │ ├── mode_pad │ │ ├── info.txt │ │ ├── mode_pad.cpp │ │ └── mode_pad.h │ ├── stream_mode.h │ └── xts │ │ ├── info.txt │ │ ├── xts.cpp │ │ └── xts.h ├── passhash │ ├── argon2fmt │ │ ├── argon2fmt.cpp │ │ ├── argon2fmt.h │ │ └── info.txt │ ├── bcrypt │ │ ├── bcrypt.cpp │ │ ├── bcrypt.h │ │ └── info.txt │ ├── info.txt │ └── passhash9 │ │ ├── info.txt │ │ ├── passhash9.cpp │ │ └── passhash9.h ├── pbkdf │ ├── argon2 │ │ ├── argon2.cpp │ │ ├── argon2.h │ │ ├── argon2_avx2 │ │ │ ├── argon2_avx2.cpp │ │ │ └── info.txt │ │ ├── argon2_ssse3 │ │ │ ├── argon2_ssse3.cpp │ │ │ └── info.txt │ │ ├── argon2pwhash.cpp │ │ └── info.txt │ ├── bcrypt_pbkdf │ │ ├── bcrypt_pbkdf.cpp │ │ ├── bcrypt_pbkdf.h │ │ └── info.txt │ ├── info.txt │ ├── pbkdf.cpp │ ├── pbkdf.h │ ├── pbkdf2 │ │ ├── info.txt │ │ ├── pbkdf2.cpp │ │ └── pbkdf2.h │ ├── pgp_s2k │ │ ├── info.txt │ │ ├── pgp_s2k.cpp │ │ ├── pgp_s2k.h │ │ ├── rfc4880.cpp │ │ └── rfc4880.h │ ├── pwdhash.cpp │ ├── pwdhash.h │ └── scrypt │ │ ├── info.txt │ │ ├── scrypt.cpp │ │ └── scrypt.h ├── permutations │ ├── ascon_perm │ │ ├── ascon_perm.cpp │ │ ├── ascon_perm.h │ │ └── info.txt │ ├── keccak_perm │ │ ├── info.txt │ │ ├── keccak_helpers.cpp │ │ ├── keccak_helpers.h │ │ ├── keccak_perm.cpp │ │ ├── keccak_perm.h │ │ ├── keccak_perm_bmi2 │ │ │ ├── info.txt │ │ │ └── keccak_perm_bmi2.cpp │ │ └── keccak_perm_round.h │ └── sponge │ │ ├── info.txt │ │ ├── sponge.h │ │ └── sponge_processing.h ├── pk_pad │ ├── enc_padding │ │ ├── eme_oaep │ │ │ ├── info.txt │ │ │ ├── oaep.cpp │ │ │ └── oaep.h │ │ ├── eme_pkcs1 │ │ │ ├── eme_pkcs.cpp │ │ │ ├── eme_pkcs.h │ │ │ └── info.txt │ │ ├── eme_raw │ │ │ ├── eme_raw.cpp │ │ │ ├── eme_raw.h │ │ │ └── info.txt │ │ ├── enc_padding.cpp │ │ ├── enc_padding.h │ │ └── info.txt │ ├── hash_id │ │ ├── hash_id.cpp │ │ ├── hash_id.h │ │ └── info.txt │ ├── mgf1 │ │ ├── info.txt │ │ ├── mgf1.cpp │ │ └── mgf1.h │ ├── raw_hash │ │ ├── info.txt │ │ ├── raw_hash.cpp │ │ └── raw_hash.h │ └── sig_padding │ │ ├── emsa_pkcs1 │ │ ├── info.txt │ │ ├── pkcs1_sig_padding.cpp │ │ └── pkcs1_sig_padding.h │ │ ├── emsa_pssr │ │ ├── info.txt │ │ ├── pssr.cpp │ │ └── pssr.h │ │ ├── emsa_raw │ │ ├── info.txt │ │ ├── raw_sig_padding.cpp │ │ └── raw_sig_padding.h │ │ ├── emsa_x931 │ │ ├── info.txt │ │ ├── x931_sig_padding.cpp │ │ └── x931_sig_padding.h │ │ ├── info.txt │ │ ├── iso9796 │ │ ├── info.txt │ │ ├── iso9796.cpp │ │ └── iso9796.h │ │ ├── sig_padding.cpp │ │ └── sig_padding.h ├── prov │ ├── commoncrypto │ │ ├── commoncrypto.h │ │ ├── commoncrypto_block.cpp │ │ ├── commoncrypto_hash.cpp │ │ ├── commoncrypto_mode.cpp │ │ ├── commoncrypto_utils.cpp │ │ ├── commoncrypto_utils.h │ │ └── info.txt │ ├── info.txt │ ├── pkcs11 │ │ ├── info.txt │ │ ├── p11.cpp │ │ ├── p11.h │ │ ├── p11_ecc_key.cpp │ │ ├── p11_ecc_key.h │ │ ├── p11_ecdh.cpp │ │ ├── p11_ecdh.h │ │ ├── p11_ecdsa.cpp │ │ ├── p11_ecdsa.h │ │ ├── p11_error.cpp │ │ ├── p11_interface.cpp │ │ ├── p11_mechanism.cpp │ │ ├── p11_mechanism.h │ │ ├── p11_module.cpp │ │ ├── p11_object.cpp │ │ ├── p11_object.h │ │ ├── p11_randomgenerator.cpp │ │ ├── p11_randomgenerator.h │ │ ├── p11_rsa.cpp │ │ ├── p11_rsa.h │ │ ├── p11_session.cpp │ │ ├── p11_slot.cpp │ │ ├── p11_types.h │ │ ├── p11_x509.cpp │ │ ├── p11_x509.h │ │ └── pkcs11.h │ ├── tpm │ │ ├── info.txt │ │ ├── tpm.cpp │ │ └── tpm.h │ └── tpm2 │ │ ├── info.txt │ │ ├── tpm2_algo_mappings.h │ │ ├── tpm2_context.cpp │ │ ├── tpm2_context.h │ │ ├── tpm2_crypto_backend │ │ ├── info.txt │ │ ├── tpm2_crypto_backend.cpp │ │ ├── tpm2_crypto_backend.h │ │ ├── tpm2_crypto_backend_impl.cpp │ │ └── tpm2_crypto_backend_impl.h │ │ ├── tpm2_ecc │ │ ├── info.txt │ │ ├── tpm2_ecc.cpp │ │ └── tpm2_ecc.h │ │ ├── tpm2_error.cpp │ │ ├── tpm2_error.h │ │ ├── tpm2_hash.cpp │ │ ├── tpm2_hash.h │ │ ├── tpm2_key.cpp │ │ ├── tpm2_key.h │ │ ├── tpm2_object.cpp │ │ ├── tpm2_object.h │ │ ├── tpm2_pkops.cpp │ │ ├── tpm2_pkops.h │ │ ├── tpm2_rng.cpp │ │ ├── tpm2_rng.h │ │ ├── tpm2_rsa │ │ ├── info.txt │ │ ├── tpm2_rsa.cpp │ │ └── tpm2_rsa.h │ │ ├── tpm2_session.cpp │ │ ├── tpm2_session.h │ │ └── tpm2_util.h ├── psk_db │ ├── info.txt │ ├── psk_db.cpp │ ├── psk_db.h │ └── psk_db_sql.cpp ├── pubkey │ ├── blinding │ │ ├── blinding.cpp │ │ ├── blinding.h │ │ └── info.txt │ ├── classic_mceliece │ │ ├── cmce.cpp │ │ ├── cmce.h │ │ ├── cmce_decaps.cpp │ │ ├── cmce_decaps.h │ │ ├── cmce_encaps.cpp │ │ ├── cmce_encaps.h │ │ ├── cmce_field_ordering.cpp │ │ ├── cmce_field_ordering.h │ │ ├── cmce_gf.cpp │ │ ├── cmce_gf.h │ │ ├── cmce_keys_internal.cpp │ │ ├── cmce_keys_internal.h │ │ ├── cmce_matrix.cpp │ │ ├── cmce_matrix.h │ │ ├── cmce_parameter_set.cpp │ │ ├── cmce_parameter_set.h │ │ ├── cmce_parameters.cpp │ │ ├── cmce_parameters.h │ │ ├── cmce_poly.cpp │ │ ├── cmce_poly.h │ │ ├── cmce_types.h │ │ └── info.txt │ ├── curve448 │ │ ├── curve448_gf.cpp │ │ ├── curve448_gf.h │ │ ├── curve448_scalar.cpp │ │ ├── curve448_scalar.h │ │ ├── ed448 │ │ │ ├── ed448.cpp │ │ │ ├── ed448.h │ │ │ ├── ed448_internal.cpp │ │ │ ├── ed448_internal.h │ │ │ └── info.txt │ │ ├── info.txt │ │ └── x448 │ │ │ ├── info.txt │ │ │ ├── x448.cpp │ │ │ ├── x448.h │ │ │ ├── x448_internal.cpp │ │ │ └── x448_internal.h │ ├── dh │ │ ├── dh.cpp │ │ ├── dh.h │ │ └── info.txt │ ├── dilithium │ │ ├── dilithium_common │ │ │ ├── dilithium.cpp │ │ │ ├── dilithium.h │ │ │ ├── dilithium_algos.cpp │ │ │ ├── dilithium_algos.h │ │ │ ├── dilithium_constants.cpp │ │ │ ├── dilithium_constants.h │ │ │ ├── dilithium_keys.cpp │ │ │ ├── dilithium_keys.h │ │ │ ├── dilithium_polynomial.h │ │ │ ├── dilithium_shake │ │ │ │ ├── dilithium_shake_xof.h │ │ │ │ └── info.txt │ │ │ ├── dilithium_symmetric_primitives.cpp │ │ │ ├── dilithium_symmetric_primitives.h │ │ │ ├── dilithium_types.h │ │ │ └── info.txt │ │ ├── dilithium_round3 │ │ │ ├── dilithium │ │ │ │ ├── dilithium_round3.h │ │ │ │ └── info.txt │ │ │ ├── dilithium_aes │ │ │ │ ├── dilithium_aes.cpp │ │ │ │ ├── dilithium_aes.h │ │ │ │ └── info.txt │ │ │ ├── dilithium_round3_symmetric_primitives.cpp │ │ │ ├── dilithium_round3_symmetric_primitives.h │ │ │ └── info.txt │ │ └── ml_dsa │ │ │ ├── info.txt │ │ │ ├── ml_dsa.h │ │ │ ├── ml_dsa_impl.cpp │ │ │ └── ml_dsa_impl.h │ ├── dl_algo │ │ ├── dl_scheme.cpp │ │ ├── dl_scheme.h │ │ └── info.txt │ ├── dl_group │ │ ├── dl_group.cpp │ │ ├── dl_group.h │ │ ├── dl_named.cpp │ │ └── info.txt │ ├── dlies │ │ ├── dlies.cpp │ │ ├── dlies.h │ │ └── info.txt │ ├── dsa │ │ ├── dsa.cpp │ │ ├── dsa.h │ │ └── info.txt │ ├── ec_group │ │ ├── ec_apoint.cpp │ │ ├── ec_apoint.h │ │ ├── ec_group.cpp │ │ ├── ec_group.h │ │ ├── ec_inner_data.cpp │ │ ├── ec_inner_data.h │ │ ├── ec_inner_pc.cpp │ │ ├── ec_inner_pc.h │ │ ├── ec_named.cpp │ │ ├── ec_point_format.h │ │ ├── ec_scalar.cpp │ │ ├── ec_scalar.h │ │ ├── info.txt │ │ └── legacy_ec_point │ │ │ ├── curve_gfp.h │ │ │ ├── ec_inner_bn.cpp │ │ │ ├── ec_inner_bn.h │ │ │ ├── ec_point.cpp │ │ │ ├── ec_point.h │ │ │ ├── info.txt │ │ │ ├── point_mul.cpp │ │ │ └── point_mul.h │ ├── ecc_key │ │ ├── ec_key_data.cpp │ │ ├── ec_key_data.h │ │ ├── ecc_key.cpp │ │ ├── ecc_key.h │ │ └── info.txt │ ├── ecdh │ │ ├── ecdh.cpp │ │ ├── ecdh.h │ │ └── info.txt │ ├── ecdsa │ │ ├── ecdsa.cpp │ │ ├── ecdsa.h │ │ └── info.txt │ ├── ecgdsa │ │ ├── ecgdsa.cpp │ │ ├── ecgdsa.h │ │ └── info.txt │ ├── ecies │ │ ├── ecies.cpp │ │ ├── ecies.h │ │ └── info.txt │ ├── eckcdsa │ │ ├── eckcdsa.cpp │ │ ├── eckcdsa.h │ │ └── info.txt │ ├── ed25519 │ │ ├── ed25519.cpp │ │ ├── ed25519.h │ │ ├── ed25519_fe.cpp │ │ ├── ed25519_fe.h │ │ ├── ed25519_internal.h │ │ ├── ed25519_key.cpp │ │ ├── ge.cpp │ │ ├── info.txt │ │ ├── sc_muladd.cpp │ │ └── sc_reduce.cpp │ ├── elgamal │ │ ├── elgamal.cpp │ │ ├── elgamal.h │ │ └── info.txt │ ├── frodokem │ │ ├── frodokem │ │ │ ├── frodo_shake_generator.h │ │ │ └── info.txt │ │ ├── frodokem_aes │ │ │ ├── frodo_aes_generator.h │ │ │ └── info.txt │ │ └── frodokem_common │ │ │ ├── frodo_constants.cpp │ │ │ ├── frodo_constants.h │ │ │ ├── frodo_matrix.cpp │ │ │ ├── frodo_matrix.h │ │ │ ├── frodo_mode.cpp │ │ │ ├── frodo_mode.h │ │ │ ├── frodo_types.h │ │ │ ├── frodokem.cpp │ │ │ ├── frodokem.h │ │ │ └── info.txt │ ├── gost_3410 │ │ ├── gost_3410.cpp │ │ ├── gost_3410.h │ │ └── info.txt │ ├── hss_lms │ │ ├── hss.cpp │ │ ├── hss.h │ │ ├── hss_lms.cpp │ │ ├── hss_lms.h │ │ ├── hss_lms_utils.cpp │ │ ├── hss_lms_utils.h │ │ ├── info.txt │ │ ├── lm_ots.cpp │ │ ├── lm_ots.h │ │ ├── lms.cpp │ │ └── lms.h │ ├── hybrid_kem │ │ ├── hybrid_kem.cpp │ │ ├── hybrid_kem.h │ │ ├── hybrid_kem_ops.cpp │ │ ├── hybrid_kem_ops.h │ │ └── info.txt │ ├── info.txt │ ├── kex_to_kem_adapter │ │ ├── info.txt │ │ ├── kex_to_kem_adapter.cpp │ │ └── kex_to_kem_adapter.h │ ├── keypair │ │ ├── info.txt │ │ ├── keypair.cpp │ │ └── keypair.h │ ├── kyber │ │ ├── kyber_common │ │ │ ├── info.txt │ │ │ ├── kyber.cpp │ │ │ ├── kyber.h │ │ │ ├── kyber_algos.cpp │ │ │ ├── kyber_algos.h │ │ │ ├── kyber_constants.cpp │ │ │ ├── kyber_constants.h │ │ │ ├── kyber_encaps_base.h │ │ │ ├── kyber_helpers.h │ │ │ ├── kyber_keys.cpp │ │ │ ├── kyber_keys.h │ │ │ ├── kyber_polynomial.h │ │ │ ├── kyber_symmetric_primitives.h │ │ │ └── kyber_types.h │ │ ├── kyber_round3 │ │ │ ├── info.txt │ │ │ ├── kyber │ │ │ │ ├── info.txt │ │ │ │ └── kyber_modern.h │ │ │ ├── kyber_90s │ │ │ │ ├── info.txt │ │ │ │ └── kyber_90s.h │ │ │ ├── kyber_round3_impl.cpp │ │ │ └── kyber_round3_impl.h │ │ └── ml_kem │ │ │ ├── info.txt │ │ │ ├── ml_kem.h │ │ │ ├── ml_kem_impl.cpp │ │ │ └── ml_kem_impl.h │ ├── mce │ │ ├── code_based_key_gen.cpp │ │ ├── code_based_util.h │ │ ├── gf2m_rootfind_dcmp.cpp │ │ ├── gf2m_small_m.cpp │ │ ├── gf2m_small_m.h │ │ ├── goppa_code.cpp │ │ ├── info.txt │ │ ├── mce_internal.h │ │ ├── mce_workfactor.cpp │ │ ├── mceliece.cpp │ │ ├── mceliece.h │ │ ├── mceliece_key.cpp │ │ ├── polyn_gf2m.cpp │ │ └── polyn_gf2m.h │ ├── pbes2 │ │ ├── info.txt │ │ ├── pbes2.cpp │ │ └── pbes2.h │ ├── pem │ │ ├── info.txt │ │ ├── pem.cpp │ │ └── pem.h │ ├── pk_algs.cpp │ ├── pk_algs.h │ ├── pk_keys.cpp │ ├── pk_keys.h │ ├── pk_ops.cpp │ ├── pk_ops.h │ ├── pk_ops_fwd.h │ ├── pk_ops_impl.h │ ├── pkcs8.cpp │ ├── pkcs8.h │ ├── pqcrystals │ │ ├── info.txt │ │ ├── pqcrystals.h │ │ ├── pqcrystals_encoding.h │ │ └── pqcrystals_helpers.h │ ├── pubkey.cpp │ ├── pubkey.h │ ├── rfc6979 │ │ ├── info.txt │ │ ├── rfc6979.cpp │ │ └── rfc6979.h │ ├── rsa │ │ ├── info.txt │ │ ├── rsa.cpp │ │ └── rsa.h │ ├── sm2 │ │ ├── info.txt │ │ ├── sm2.cpp │ │ ├── sm2.h │ │ └── sm2_enc.cpp │ ├── sphincsplus │ │ ├── slh_dsa_sha2 │ │ │ └── info.txt │ │ ├── slh_dsa_shake │ │ │ └── info.txt │ │ ├── sphincsplus_common │ │ │ ├── info.txt │ │ │ ├── slh_dsa.h │ │ │ ├── sp_address.h │ │ │ ├── sp_fors.cpp │ │ │ ├── sp_fors.h │ │ │ ├── sp_hash.cpp │ │ │ ├── sp_hash.h │ │ │ ├── sp_hypertree.cpp │ │ │ ├── sp_hypertree.h │ │ │ ├── sp_parameters.cpp │ │ │ ├── sp_parameters.h │ │ │ ├── sp_treehash.cpp │ │ │ ├── sp_treehash.h │ │ │ ├── sp_types.h │ │ │ ├── sp_wots.cpp │ │ │ ├── sp_wots.h │ │ │ ├── sp_xmss.cpp │ │ │ ├── sp_xmss.h │ │ │ ├── sphincsplus.cpp │ │ │ ├── sphincsplus.h │ │ │ ├── sphincsplus_sha2_base │ │ │ │ ├── info.txt │ │ │ │ └── sp_hash_sha2.h │ │ │ └── sphincsplus_shake_base │ │ │ │ ├── info.txt │ │ │ │ └── sp_hash_shake.h │ │ ├── sphincsplus_sha2 │ │ │ └── info.txt │ │ └── sphincsplus_shake │ │ │ └── info.txt │ ├── workfactor.cpp │ ├── workfactor.h │ ├── x25519 │ │ ├── curve25519.h │ │ ├── donna.cpp │ │ ├── info.txt │ │ ├── x25519.cpp │ │ └── x25519.h │ ├── x509_key.cpp │ ├── x509_key.h │ └── xmss │ │ ├── atomic.h │ │ ├── info.txt │ │ ├── xmss.h │ │ ├── xmss_address.h │ │ ├── xmss_common_ops.cpp │ │ ├── xmss_common_ops.h │ │ ├── xmss_hash.cpp │ │ ├── xmss_hash.h │ │ ├── xmss_index_registry.cpp │ │ ├── xmss_index_registry.h │ │ ├── xmss_parameters.cpp │ │ ├── xmss_parameters.h │ │ ├── xmss_privatekey.cpp │ │ ├── xmss_publickey.cpp │ │ ├── xmss_signature.cpp │ │ ├── xmss_signature.h │ │ ├── xmss_signature_operation.cpp │ │ ├── xmss_signature_operation.h │ │ ├── xmss_tools.h │ │ ├── xmss_verification_operation.cpp │ │ ├── xmss_verification_operation.h │ │ ├── xmss_wots.cpp │ │ ├── xmss_wots.h │ │ └── xmss_wots_parameters.cpp ├── rng │ ├── auto_rng │ │ ├── auto_rng.cpp │ │ ├── auto_rng.h │ │ └── info.txt │ ├── chacha_rng │ │ ├── chacha_rng.cpp │ │ ├── chacha_rng.h │ │ └── info.txt │ ├── esdm_rng │ │ ├── esdm_rng.cpp │ │ ├── esdm_rng.h │ │ └── info.txt │ ├── hmac_drbg │ │ ├── hmac_drbg.cpp │ │ ├── hmac_drbg.h │ │ └── info.txt │ ├── info.txt │ ├── jitter_rng │ │ ├── info.txt │ │ ├── jitter_rng.cpp │ │ └── jitter_rng.h │ ├── processor_rng │ │ ├── info.txt │ │ ├── processor_rng.cpp │ │ └── processor_rng.h │ ├── rng.cpp │ ├── rng.h │ ├── stateful_rng │ │ ├── info.txt │ │ ├── stateful_rng.cpp │ │ └── stateful_rng.h │ └── system_rng │ │ ├── info.txt │ │ ├── system_rng.cpp │ │ └── system_rng.h ├── stream │ ├── chacha │ │ ├── chacha.cpp │ │ ├── chacha.h │ │ ├── chacha_avx2 │ │ │ ├── chacha_avx2.cpp │ │ │ └── info.txt │ │ ├── chacha_avx512 │ │ │ ├── chacha_avx512.cpp │ │ │ └── info.txt │ │ ├── chacha_simd32 │ │ │ ├── chacha_simd32.cpp │ │ │ └── info.txt │ │ └── info.txt │ ├── ctr │ │ ├── ctr.cpp │ │ ├── ctr.h │ │ └── info.txt │ ├── info.txt │ ├── ofb │ │ ├── info.txt │ │ ├── ofb.cpp │ │ └── ofb.h │ ├── rc4 │ │ ├── info.txt │ │ ├── rc4.cpp │ │ └── rc4.h │ ├── salsa20 │ │ ├── info.txt │ │ ├── salsa20.cpp │ │ └── salsa20.h │ ├── shake_cipher │ │ ├── info.txt │ │ ├── shake_cipher.cpp │ │ └── shake_cipher.h │ ├── stream_cipher.cpp │ └── stream_cipher.h ├── tls │ ├── asio │ │ ├── asio_async_ops.h │ │ ├── asio_compat.h │ │ ├── asio_context.cpp │ │ ├── asio_context.h │ │ ├── asio_error.h │ │ ├── asio_stream.h │ │ └── info.txt │ ├── credentials_manager.cpp │ ├── credentials_manager.h │ ├── info.txt │ ├── msg_cert_req.cpp │ ├── msg_cert_verify.cpp │ ├── msg_client_hello.cpp │ ├── msg_finished.cpp │ ├── msg_server_hello.cpp │ ├── msg_session_ticket.cpp │ ├── sessions_sql │ │ ├── info.txt │ │ ├── tls_session_manager_sql.cpp │ │ └── tls_session_manager_sql.h │ ├── sessions_sqlite3 │ │ ├── info.txt │ │ ├── tls_session_manager_sqlite.cpp │ │ └── tls_session_manager_sqlite.h │ ├── tls.h │ ├── tls12 │ │ ├── info.txt │ │ ├── msg_cert_status.cpp │ │ ├── msg_certificate_12.cpp │ │ ├── msg_client_kex.cpp │ │ ├── msg_hello_verify.cpp │ │ ├── msg_server_kex.cpp │ │ ├── tls_cbc │ │ │ ├── info.txt │ │ │ ├── tls_cbc.cpp │ │ │ └── tls_cbc.h │ │ ├── tls_channel_impl_12.cpp │ │ ├── tls_channel_impl_12.h │ │ ├── tls_client_impl_12.cpp │ │ ├── tls_client_impl_12.h │ │ ├── tls_handshake_hash.cpp │ │ ├── tls_handshake_hash.h │ │ ├── tls_handshake_io.cpp │ │ ├── tls_handshake_io.h │ │ ├── tls_handshake_state.cpp │ │ ├── tls_handshake_state.h │ │ ├── tls_null │ │ │ ├── info.txt │ │ │ ├── tls_null.cpp │ │ │ └── tls_null.h │ │ ├── tls_record.cpp │ │ ├── tls_record.h │ │ ├── tls_seq_numbers.h │ │ ├── tls_server_impl_12.cpp │ │ ├── tls_server_impl_12.h │ │ ├── tls_session_key.cpp │ │ └── tls_session_key.h │ ├── tls13 │ │ ├── info.txt │ │ ├── msg_certificate_13.cpp │ │ ├── msg_certificate_req_13.cpp │ │ ├── msg_encrypted_extensions.cpp │ │ ├── msg_key_update.cpp │ │ ├── tls_channel_impl_13.cpp │ │ ├── tls_channel_impl_13.h │ │ ├── tls_cipher_state.cpp │ │ ├── tls_cipher_state.h │ │ ├── tls_client_impl_13.cpp │ │ ├── tls_client_impl_13.h │ │ ├── tls_extensions_key_share.cpp │ │ ├── tls_extensions_psk.cpp │ │ ├── tls_handshake_layer_13.cpp │ │ ├── tls_handshake_layer_13.h │ │ ├── tls_handshake_state_13.cpp │ │ ├── tls_handshake_state_13.h │ │ ├── tls_psk_identity_13.cpp │ │ ├── tls_psk_identity_13.h │ │ ├── tls_record_layer_13.cpp │ │ ├── tls_record_layer_13.h │ │ ├── tls_server_impl_13.cpp │ │ ├── tls_server_impl_13.h │ │ ├── tls_transcript_hash_13.cpp │ │ └── tls_transcript_hash_13.h │ ├── tls13_pqc │ │ ├── hybrid_public_key.cpp │ │ ├── hybrid_public_key.h │ │ └── info.txt │ ├── tls_alert.cpp │ ├── tls_alert.h │ ├── tls_algos.cpp │ ├── tls_algos.h │ ├── tls_callbacks.cpp │ ├── tls_callbacks.h │ ├── tls_channel.h │ ├── tls_channel_impl.h │ ├── tls_ciphersuite.cpp │ ├── tls_ciphersuite.h │ ├── tls_client.cpp │ ├── tls_client.h │ ├── tls_exceptn.h │ ├── tls_extensions.cpp │ ├── tls_extensions.h │ ├── tls_extensions_cert_status_req.cpp │ ├── tls_external_psk.cpp │ ├── tls_external_psk.h │ ├── tls_handshake_msg.h │ ├── tls_handshake_transitions.cpp │ ├── tls_handshake_transitions.h │ ├── tls_magic.h │ ├── tls_messages.h │ ├── tls_policy.cpp │ ├── tls_policy.h │ ├── tls_reader.h │ ├── tls_server.cpp │ ├── tls_server.h │ ├── tls_server_info.h │ ├── tls_session.cpp │ ├── tls_session.h │ ├── tls_session_manager.cpp │ ├── tls_session_manager.h │ ├── tls_session_manager_hybrid.cpp │ ├── tls_session_manager_hybrid.h │ ├── tls_session_manager_memory.cpp │ ├── tls_session_manager_memory.h │ ├── tls_session_manager_noop.cpp │ ├── tls_session_manager_noop.h │ ├── tls_session_manager_stateless.cpp │ ├── tls_session_manager_stateless.h │ ├── tls_signature_scheme.cpp │ ├── tls_signature_scheme.h │ ├── tls_suite_info.cpp │ ├── tls_text_policy.cpp │ ├── tls_version.cpp │ └── tls_version.h ├── utils │ ├── alignment_buffer.h │ ├── allocator.cpp │ ├── allocator.h │ ├── api.h │ ├── assert.cpp │ ├── assert.h │ ├── bit_ops.h │ ├── bitvector │ │ ├── bitvector.h │ │ └── info.txt │ ├── boost │ │ └── info.txt │ ├── bswap.h │ ├── calendar.cpp │ ├── calendar.h │ ├── charset.cpp │ ├── charset.h │ ├── codec_base.h │ ├── compiler.h │ ├── concepts.h │ ├── cpuid │ │ ├── cpuid.cpp │ │ ├── cpuid.h │ │ ├── cpuid_aarch64 │ │ │ ├── cpuid_aarch64.cpp │ │ │ ├── cpuid_features.cpp │ │ │ ├── cpuid_features.h │ │ │ └── info.txt │ │ ├── cpuid_arm32 │ │ │ ├── cpuid_arm32.cpp │ │ │ ├── cpuid_features.cpp │ │ │ ├── cpuid_features.h │ │ │ └── info.txt │ │ ├── cpuid_loongarch64 │ │ │ ├── cpuid_features.cpp │ │ │ ├── cpuid_features.h │ │ │ ├── cpuid_loongarch64.cpp │ │ │ └── info.txt │ │ ├── cpuid_ppc │ │ │ ├── cpuid_features.cpp │ │ │ ├── cpuid_features.h │ │ │ ├── cpuid_ppc.cpp │ │ │ └── info.txt │ │ ├── cpuid_riscv64 │ │ │ ├── cpuid_features.cpp │ │ │ ├── cpuid_features.h │ │ │ ├── cpuid_riscv64.cpp │ │ │ └── info.txt │ │ ├── cpuid_wasm │ │ │ ├── cpuid_features.cpp │ │ │ ├── cpuid_features.h │ │ │ ├── cpuid_wasm.cpp │ │ │ └── info.txt │ │ ├── cpuid_x86 │ │ │ ├── cpuid_features.cpp │ │ │ ├── cpuid_features.h │ │ │ ├── cpuid_x86.cpp │ │ │ └── info.txt │ │ └── info.txt │ ├── ct_utils.cpp │ ├── ct_utils.h │ ├── data_src.cpp │ ├── data_src.h │ ├── database.h │ ├── donna128.h │ ├── dyn_load │ │ ├── dyn_load.cpp │ │ ├── dyn_load.h │ │ └── info.txt │ ├── exceptn.cpp │ ├── exceptn.h │ ├── filesystem.cpp │ ├── filesystem.h │ ├── fmt.h │ ├── ghash │ │ ├── ghash.cpp │ │ ├── ghash.h │ │ ├── ghash_cpu │ │ │ ├── ghash_cpu.cpp │ │ │ └── info.txt │ │ ├── ghash_vperm │ │ │ ├── ghash_vperm.cpp │ │ │ └── info.txt │ │ └── info.txt │ ├── http_util │ │ ├── http_util.cpp │ │ ├── http_util.h │ │ └── info.txt │ ├── info.txt │ ├── int_utils.h │ ├── isa_extn.h │ ├── loadstor.h │ ├── locking_allocator │ │ ├── info.txt │ │ ├── locking_allocator.cpp │ │ └── locking_allocator.h │ ├── mem_ops.cpp │ ├── mem_ops.h │ ├── mem_pool │ │ ├── info.txt │ │ ├── mem_pool.cpp │ │ └── mem_pool.h │ ├── mem_utils.cpp │ ├── mem_utils.h │ ├── mul128.h │ ├── mutex.h │ ├── os_utils │ │ ├── info.txt │ │ ├── os_utils.cpp │ │ └── os_utils.h │ ├── parsing.cpp │ ├── parsing.h │ ├── poly_dbl │ │ ├── info.txt │ │ ├── poly_dbl.cpp │ │ └── poly_dbl.h │ ├── prefetch.cpp │ ├── prefetch.h │ ├── read_cfg.cpp │ ├── read_kv.cpp │ ├── rotate.h │ ├── rounding.h │ ├── scan_name.cpp │ ├── scan_name.h │ ├── simd │ │ ├── info.txt │ │ ├── simd_2x64 │ │ │ ├── info.txt │ │ │ └── simd_2x64.h │ │ ├── simd_4x32 │ │ │ ├── info.txt │ │ │ └── simd_4x32.h │ │ ├── simd_4x64 │ │ │ ├── info.txt │ │ │ └── simd_4x64.h │ │ ├── simd_8x64 │ │ │ ├── info.txt │ │ │ └── simd_8x64.h │ │ ├── simd_avx2 │ │ │ ├── info.txt │ │ │ ├── simd_avx2.h │ │ │ └── simd_avx2_gfni.h │ │ └── simd_avx512 │ │ │ ├── info.txt │ │ │ └── simd_avx512.h │ ├── socket │ │ ├── info.txt │ │ ├── socket.cpp │ │ ├── socket.h │ │ ├── socket_udp.cpp │ │ ├── socket_udp.h │ │ ├── uri.cpp │ │ └── uri.h │ ├── sqlite3 │ │ ├── info.txt │ │ ├── sqlite3.cpp │ │ └── sqlite3.h │ ├── stack_scrubbing.h │ ├── stl_util.h │ ├── strong_type.h │ ├── thread_utils │ │ ├── barrier.cpp │ │ ├── barrier.h │ │ ├── info.txt │ │ ├── rwlock.cpp │ │ ├── rwlock.h │ │ ├── semaphore.cpp │ │ ├── semaphore.h │ │ ├── thread_pool.cpp │ │ └── thread_pool.h │ ├── time_utils.h │ ├── tree_hash │ │ ├── info.txt │ │ └── tree_hash.h │ ├── types.h │ ├── uuid │ │ ├── info.txt │ │ ├── uuid.cpp │ │ └── uuid.h │ ├── version.cpp │ └── version.h ├── x509 │ ├── alt_name.cpp │ ├── asn1_alt_name.cpp │ ├── cert_status.cpp │ ├── certstor.cpp │ ├── certstor.h │ ├── certstor_flatfile │ │ ├── certstor_flatfile.cpp │ │ ├── certstor_flatfile.h │ │ └── info.txt │ ├── certstor_sql │ │ ├── certstor_sql.cpp │ │ ├── certstor_sql.h │ │ └── info.txt │ ├── certstor_sqlite3 │ │ ├── certstor_sqlite.cpp │ │ ├── certstor_sqlite.h │ │ └── info.txt │ ├── certstor_system │ │ ├── certstor_system.cpp │ │ ├── certstor_system.h │ │ └── info.txt │ ├── certstor_system_macos │ │ ├── certstor_macos.cpp │ │ ├── certstor_macos.h │ │ └── info.txt │ ├── certstor_system_windows │ │ ├── certstor_windows.cpp │ │ ├── certstor_windows.h │ │ └── info.txt │ ├── crl_ent.cpp │ ├── info.txt │ ├── key_constraint.cpp │ ├── name_constraint.cpp │ ├── ocsp.cpp │ ├── ocsp.h │ ├── ocsp_types.cpp │ ├── pkcs10.cpp │ ├── pkcs10.h │ ├── pkix_enums.h │ ├── pkix_types.h │ ├── x509_attribute.cpp │ ├── x509_ca.cpp │ ├── x509_ca.h │ ├── x509_crl.cpp │ ├── x509_crl.h │ ├── x509_dn.cpp │ ├── x509_dn_ub.cpp │ ├── x509_ext.cpp │ ├── x509_ext.h │ ├── x509_obj.cpp │ ├── x509_obj.h │ ├── x509_utils.h │ ├── x509cert.cpp │ ├── x509cert.h │ ├── x509opt.cpp │ ├── x509path.cpp │ ├── x509path.h │ ├── x509self.cpp │ └── x509self.h └── xof │ ├── aes_crystals_xof │ ├── aes_crystals_xof.cpp │ ├── aes_crystals_xof.h │ └── info.txt │ ├── ascon_xof128 │ ├── ascon_xof128.cpp │ ├── ascon_xof128.h │ └── info.txt │ ├── cshake_xof │ ├── cshake_xof.cpp │ ├── cshake_xof.h │ └── info.txt │ ├── info.txt │ ├── shake_xof │ ├── info.txt │ ├── shake_xof.cpp │ └── shake_xof.h │ ├── xof.cpp │ └── xof.h ├── python └── botan3.py ├── scripts ├── bench.py ├── build_docs.py ├── check.py ├── ci │ ├── ci_tlsanvil_check.py │ ├── ci_tlsanvil_test.py │ ├── cmake_tests │ │ ├── CMakeLists.txt │ │ ├── CMakePresets.json │ │ └── main.cpp │ ├── codecov.yml │ ├── gh_clang_tidy_fixes_in_pr.py │ ├── gha_linux_packages.py │ ├── setup_gh_actions.ps1 │ ├── setup_gh_actions.sh │ ├── setup_gh_actions_after_ccache.sh │ ├── setup_gh_actions_after_vcvars.ps1 │ └── start_tpm2_simulator.sh ├── ci_build.py ├── ci_check_headers.py ├── ci_check_install.py ├── ci_report_sizes.py ├── cleanup.py ├── compare_perf.py ├── config_for_oss_fuzz.py ├── create_corpus_zip.py ├── dev_tools │ ├── addchain.py │ ├── analyze_timing_results.py │ ├── file_size_check.py │ ├── format_wycheproof_ecdsa.py │ ├── gen_dilithium_kat.py │ ├── gen_ec_groups.py │ ├── gen_ffi_decls.py │ ├── gen_frodo_kat.py │ ├── gen_kyber_kat.py │ ├── gen_mlkem_acvp_kat.py │ ├── gen_mp_comba.py │ ├── gen_mp_monty.py │ ├── gen_oids.py │ ├── gen_os_features.py │ ├── gen_pqc_dsa_kats.py │ ├── gen_sphincsplus_kat.py │ ├── gen_tls_suite_info.py │ ├── macro_checks.py │ ├── mychain_creator.sh │ ├── randombit_ocsp_forger.sh │ ├── run_clang_format.py │ ├── run_clang_tidy.py │ ├── show_dependencies.py │ └── xmss_test_vector_from_reference.py ├── dist.py ├── fuzzer.xml ├── gdb │ └── strubtest.py ├── install.py ├── python_unittests.py ├── python_unittests_unix.py ├── repo_config.py ├── rewrite_lcov.py ├── run_limbo_tests.py ├── run_tests_under_valgrind.py ├── run_tls_attacker.py ├── run_tls_fuzzer.py ├── test_all_configs.py ├── test_cli.py ├── test_cli_crypt.py ├── test_fuzzers.py ├── test_python.py ├── test_strubbed_symbols.py ├── tls_scanner │ ├── boa.txt │ ├── policy.txt │ ├── readme.txt │ ├── tls_scanner.py │ └── urls.txt └── website.py └── tests ├── data ├── aead │ ├── ascon_aead128.vec │ ├── ccm.vec │ ├── chacha20poly1305.vec │ ├── eax.vec │ ├── gcm.vec │ ├── ocb.vec │ └── siv.vec ├── argon2.vec ├── asn1_oid.vec ├── asn1_oid_invalid.vec ├── asn1_print │ ├── input1.der │ ├── input2.der │ ├── input3.der │ ├── input4.der │ ├── input5.der │ ├── input6.der │ ├── input7.der │ ├── output1.txt │ ├── output2.txt │ ├── output3.txt │ ├── output4.txt │ ├── output5.txt │ ├── output6.txt │ └── output7.txt ├── asn1_time.vec ├── bcrypt_pbkdf.vec ├── block │ ├── aes.vec │ ├── aria.vec │ ├── blowfish.vec │ ├── camellia.vec │ ├── cascade.vec │ ├── cast128.vec │ ├── des.vec │ ├── gost_28147.vec │ ├── idea.vec │ ├── kuznyechik.vec │ ├── lion.vec │ ├── noekeon.vec │ ├── seed.vec │ ├── serpent.vec │ ├── shacal2.vec │ ├── sm4.vec │ ├── threefish.vec │ └── twofish.vec ├── bn │ ├── add.vec │ ├── cmp.vec │ ├── divide.vec │ ├── dsa_gen.vec │ ├── gcd.vec │ ├── invmod.vec │ ├── isprime.vec │ ├── jacobi.vec │ ├── lshift.vec │ ├── mod.vec │ ├── mul.vec │ ├── perfect_square.vec │ ├── powmod.vec │ ├── random.vec │ ├── rshift.vec │ ├── sqr.vec │ ├── sqrt_modulo_prime.vec │ └── sub.vec ├── charset.vec ├── codec │ ├── base32.vec │ ├── base58.vec │ ├── base58c.vec │ └── base64.vec ├── cryptobox.vec ├── dates.vec ├── fpe_fe1.vec ├── hash │ ├── adler32.vec │ ├── ascon_hash256.vec │ ├── blake2b.vec │ ├── blake2s.vec │ ├── comp4p.vec │ ├── crc24.vec │ ├── crc32.vec │ ├── gost.vec │ ├── keccak.vec │ ├── md4.vec │ ├── md5.vec │ ├── parallel.vec │ ├── ripemd160.vec │ ├── sha1.vec │ ├── sha2_32.vec │ ├── sha2_64.vec │ ├── sha3.vec │ ├── shake.vec │ ├── skein.vec │ ├── sm3.vec │ ├── streebog.vec │ ├── truncated.vec │ └── whirlpool.vec ├── hash_mc.vec ├── hash_rep.vec ├── hkdf_label.vec ├── hostnames.vec ├── kdf │ ├── hkdf.vec │ ├── kdf1.vec │ ├── kdf1_iso18033.vec │ ├── kdf2.vec │ ├── sp800_108_ctr.vec │ ├── sp800_108_fb.vec │ ├── sp800_108_pipe.vec │ ├── sp800_56a.vec │ ├── sp800_56c.vec │ ├── tls_prf.vec │ └── x942_prf.vec ├── keywrap │ ├── nist_key_wrap.vec │ ├── nist_key_wrap_invalid.vec │ └── rfc3394.vec ├── mac │ ├── blake2bmac.vec │ ├── cmac.vec │ ├── gmac.vec │ ├── hmac.vec │ ├── kmac.vec │ ├── poly1305.vec │ ├── siphash.vec │ └── x919_mac.vec ├── modes │ ├── cbc.vec │ ├── cfb.vec │ ├── ctr.vec │ └── xts.vec ├── ocb │ ├── ocb_long.vec │ ├── ocb_wide.vec │ └── ocb_wide_long.vec ├── otp │ ├── hotp.vec │ └── totp.vec ├── pad.vec ├── passhash │ ├── argon2.vec │ ├── bcrypt.vec │ └── passhash9.vec ├── pbkdf │ ├── pbkdf2.vec │ └── pgp_s2k.vec ├── pk_pad_eme │ └── pkcs1.vec ├── poly_dbl.vec ├── pubkey │ ├── api_sign.vec │ ├── cmce_kat_hashed.vec │ ├── cmce_negative.vec │ ├── dh.vec │ ├── dh_invalid.vec │ ├── dilithium_4x4_AES_Deterministic.vec │ ├── dilithium_4x4_AES_Randomized.vec │ ├── dilithium_4x4_Deterministic.vec │ ├── dilithium_4x4_Randomized.vec │ ├── dilithium_6x5_AES_Deterministic.vec │ ├── dilithium_6x5_AES_Randomized.vec │ ├── dilithium_6x5_Deterministic.vec │ ├── dilithium_6x5_Randomized.vec │ ├── dilithium_8x7_AES_Deterministic.vec │ ├── dilithium_8x7_AES_Randomized.vec │ ├── dilithium_8x7_Deterministic.vec │ ├── dilithium_8x7_Randomized.vec │ ├── dlies.vec │ ├── dsa_prob.vec │ ├── dsa_rfc6979.vec │ ├── dsa_verify.vec │ ├── ec_h2c.vec │ ├── ec_h2c_xmd.vec │ ├── ec_h2s.vec │ ├── ecc_base_point_mul.vec │ ├── ecc_invalid.vec │ ├── ecc_var_point_mul.vec │ ├── ecc_var_point_mul2.vec │ ├── ecdh.vec │ ├── ecdsa_explicit.vec │ ├── ecdsa_invalid.vec │ ├── ecdsa_key_recovery.vec │ ├── ecdsa_keygen.vec │ ├── ecdsa_prob.vec │ ├── ecdsa_rfc6979.vec │ ├── ecdsa_verify.vec │ ├── ecdsa_wycheproof.vec │ ├── ecgdsa.vec │ ├── ecies-18033.vec │ ├── ecies.vec │ ├── eckcdsa.vec │ ├── ed25519.vec │ ├── ed25519_key_valid.vec │ ├── ed25519_verify.vec │ ├── ed448.vec │ ├── elgamal_decrypt.vec │ ├── elgamal_encrypt.vec │ ├── frodokem_kat.vec │ ├── gost_3410_sign.vec │ ├── gost_3410_verify.vec │ ├── hss_lms_invalid.vec │ ├── hss_lms_sig.vec │ ├── hss_lms_verify.vec │ ├── key_encoding.vec │ ├── kyber_encodings.vec │ ├── kyber_kat.vec │ ├── lmots.vec │ ├── lms.vec │ ├── mce.vec │ ├── ml-dsa-4x4_Deterministic.vec │ ├── ml-dsa-4x4_Randomized.vec │ ├── ml-dsa-6x5_Deterministic.vec │ ├── ml-dsa-6x5_Randomized.vec │ ├── ml-dsa-8x7_Deterministic.vec │ ├── ml-dsa-8x7_Randomized.vec │ ├── ml_dsa_verify.vec │ ├── ml_kem.vec │ ├── ml_kem_acvp_encap.vec │ ├── ml_kem_acvp_keygen.vec │ ├── rsa_decrypt.vec │ ├── rsa_invalid.vec │ ├── rsa_kem.vec │ ├── rsa_keygen.vec │ ├── rsa_pss.vec │ ├── rsa_pss_raw.vec │ ├── rsa_sig.vec │ ├── rsa_verify.vec │ ├── rsaes.vec │ ├── slh_dsa.vec │ ├── slh_dsa_generic.vec │ ├── sm2_enc.vec │ ├── sm2_sig.vec │ ├── sphincsplus.vec │ ├── sphincsplus_fors.vec │ ├── sphincsplus_wots.vec │ ├── workfactor.vec │ ├── x25519.vec │ ├── x448.vec │ ├── xmss_invalid.vec │ ├── xmss_keygen_reference.vec │ ├── xmss_sig.vec │ └── xmss_verify.vec ├── rfc6979.vec ├── rng │ ├── chacha_rng.vec │ └── hmac_drbg.vec ├── roughtime │ ├── roughtime_nonce_from_blind.vec │ ├── roughtime_request.vec │ └── roughtime_response.vec ├── salted_blowfish.vec ├── scrypt.vec ├── siv_ad.vec ├── srp6a.vec ├── stream │ ├── chacha.vec │ ├── ctr.vec │ ├── ofb.vec │ ├── rc4.vec │ ├── salsa20.vec │ └── shake.vec ├── timing │ ├── bleichenbacher.vec │ ├── ecc_mul.vec │ ├── ecdsa.vec │ ├── inverse_mod.vec │ ├── lucky13sec3.vec │ ├── lucky13sec4sha1.vec │ ├── lucky13sec4sha256.vec │ ├── lucky13sec4sha384.vec │ ├── manger.vec │ └── pow_mod.vec ├── tls-policy │ ├── bsi.txt │ ├── compat.txt │ ├── datagram.txt │ ├── default.txt │ ├── default_tls13.txt │ ├── rfc8448_1rtt.txt │ ├── rfc8448_client_auth_server.txt │ ├── rfc8448_compat_client.txt │ ├── rfc8448_compat_server.txt │ ├── rfc8448_hrr_client.txt │ ├── rfc8448_hrr_server.txt │ ├── rfc8448_psk_dhe.txt │ ├── rfc8448_rawpubkey.txt │ ├── strict.txt │ ├── strict_tls13.txt │ ├── suiteb_128.txt │ └── suiteb_192.txt ├── tls-sessions │ └── botan-2.19.3.sqlite ├── tls │ ├── alert.vec │ ├── cert_status.vec │ ├── cert_verify.vec │ ├── client_hello.vec │ ├── hello_request.vec │ ├── hello_verify.vec │ ├── new_session_ticket.vec │ └── server_hello.vec ├── tls_13 │ ├── client_hello.vec │ └── server_hello.vec ├── tls_13_rfc8448 │ ├── client_certificate.pem │ ├── client_raw_public_keypair.pem │ ├── server_certificate.pem │ ├── server_certificate_client_auth.pem │ ├── server_key.pem │ ├── server_raw_public_keypair.pem │ └── transcripts.vec ├── tls_cbc.vec ├── tls_cbc_kat.vec ├── tls_cbc_padding.vec ├── tls_extensions │ ├── generation │ │ └── key_share_CH_offers.vec │ └── parsing │ │ ├── cookie.vec │ │ ├── key_share_CH.vec │ │ ├── key_share_HRR.vec │ │ ├── key_share_SH.vec │ │ ├── signature_algorithms_cert.vec │ │ ├── supported_groups.vec │ │ └── supported_versions.vec ├── tls_null.vec ├── tss │ ├── generation.vec │ └── recovery.vec ├── utils │ ├── dns.vec │ ├── ipv4.vec │ └── read_kv.vec ├── x509 │ ├── bsi │ │ ├── CRL_01 │ │ │ ├── CRL_01_ee.TC.pem.crt │ │ │ ├── CRL_01_ee.pem │ │ │ ├── CRL_01_root_ca.TA.pem.crt │ │ │ ├── CRL_01_root_ca.pem │ │ │ ├── CRL_01_sub_ca.ca.pem.crt │ │ │ ├── CRL_01_sub_ca.pem │ │ │ └── description.txt │ │ ├── CRL_02 │ │ │ ├── CRL_02_ee.TC.pem.crt │ │ │ ├── CRL_02_ee.pem │ │ │ ├── CRL_02_root_ca.TA.pem.crt │ │ │ ├── CRL_02_root_ca.pem │ │ │ ├── CRL_02_sub_ca.ca.pem.crt │ │ │ ├── CRL_02_sub_ca.pem │ │ │ ├── crls │ │ │ │ ├── CRL_02_root_crl.pem.crl │ │ │ │ └── CRL_02_sub_ca_crl.pem.crl │ │ │ └── description.txt │ │ ├── CRL_03 │ │ │ ├── CRL_03_ee.TC.pem.crt │ │ │ ├── CRL_03_ee.pem │ │ │ ├── CRL_03_root_ca.TA.pem.crt │ │ │ ├── CRL_03_root_ca.pem │ │ │ ├── CRL_03_sub_ca.ca.pem.crt │ │ │ ├── CRL_03_sub_ca.pem │ │ │ ├── crls │ │ │ │ ├── CRL_03_crl.pem.crl │ │ │ │ └── CRL_03_root_crl.pem.crl │ │ │ └── description.txt │ │ ├── CRL_04 │ │ │ ├── CRL_04_ee.TC.pem.crt │ │ │ ├── CRL_04_ee.pem │ │ │ ├── CRL_04_root_ca.TA.pem.crt │ │ │ ├── CRL_04_root_ca.pem │ │ │ ├── CRL_04_sub_ca.ca.pem.crt │ │ │ ├── CRL_04_sub_ca.pem │ │ │ ├── crls │ │ │ │ ├── CRL_04_crl.pem.crl │ │ │ │ └── CRL_04_root_crl.pem.crl │ │ │ └── description.txt │ │ ├── CRL_05 │ │ │ ├── CRL_05_ee.TC.pem.crt │ │ │ ├── CRL_05_ee.pem │ │ │ ├── CRL_05_root_ca.TA.pem.crt │ │ │ ├── CRL_05_root_ca.pem │ │ │ ├── CRL_05_sub_ca.ca.pem.crt │ │ │ ├── CRL_05_sub_ca.pem │ │ │ ├── crls │ │ │ │ ├── CRL_05_crl.pem.crl │ │ │ │ └── CRL_05_root_crl.pem.crl │ │ │ └── description.txt │ │ ├── CRL_06 │ │ │ ├── CRL_06_ee.TC.pem.crt │ │ │ ├── CRL_06_ee.pem │ │ │ ├── CRL_06_root_ca.TA.pem.crt │ │ │ ├── CRL_06_root_ca.pem │ │ │ ├── CRL_06_sub_ca.ca.pem.crt │ │ │ ├── CRL_06_sub_ca.pem │ │ │ ├── crls │ │ │ │ ├── CRL_06_crl.pem.crl │ │ │ │ └── CRL_06_root_crl.pem.crl │ │ │ └── description.txt │ │ ├── CRL_07 │ │ │ ├── CRL_07_ee.TC.pem.crt │ │ │ ├── CRL_07_ee.pem │ │ │ ├── CRL_07_root_ca.TA.pem.crt │ │ │ ├── CRL_07_root_ca.pem │ │ │ ├── CRL_07_sub_ca.ca.pem.crt │ │ │ ├── CRL_07_sub_ca.pem │ │ │ ├── crls │ │ │ │ ├── CRL_07_crl.pem.crl │ │ │ │ └── CRL_07_root_crl.pem.crl │ │ │ └── description.txt │ │ ├── CRL_08 │ │ │ ├── CRL_08_ee.TC.pem.crt │ │ │ ├── CRL_08_ee.pem │ │ │ ├── CRL_08_root_ca.TA.pem.crt │ │ │ ├── CRL_08_root_ca.pem │ │ │ ├── CRL_08_sub_ca.ca.pem.crt │ │ │ ├── CRL_08_sub_ca.pem │ │ │ ├── crls │ │ │ │ ├── CRL_08_crl.pem.crl │ │ │ │ └── CRL_08_root_crl.pem.crl │ │ │ └── description.txt │ │ ├── CRL_09 │ │ │ ├── CRL_09_ee.TC.pem.crt │ │ │ ├── CRL_09_ee.pem │ │ │ ├── CRL_09_root_ca.TA.pem.crt │ │ │ ├── CRL_09_root_ca.pem │ │ │ ├── CRL_09_sub_ca.ca.pem.crt │ │ │ ├── CRL_09_sub_ca.pem │ │ │ ├── crls │ │ │ │ ├── CRL_09_crl.pem.crl │ │ │ │ └── CRL_09_root_crl.pem.crl │ │ │ └── description.txt │ │ ├── CRL_10 │ │ │ ├── CRL_10_ee.TC.pem.crt │ │ │ ├── CRL_10_ee.pem │ │ │ ├── CRL_10_root_ca.TA.pem.crt │ │ │ ├── CRL_10_root_ca.pem │ │ │ ├── CRL_10_sub_ca.ca.pem.crt │ │ │ ├── CRL_10_sub_ca.pem │ │ │ ├── crls │ │ │ │ ├── CRL_10_crl.pem.crl │ │ │ │ └── CRL_10_root_crl.pem.crl │ │ │ └── description.txt │ │ ├── CRL_11 │ │ │ ├── CRL_11_ee.TC.pem.crt │ │ │ ├── CRL_11_ee.pem │ │ │ ├── CRL_11_root_ca.TA.pem.crt │ │ │ ├── CRL_11_root_ca.pem │ │ │ ├── CRL_11_sub_ca.ca.pem.crt │ │ │ ├── CRL_11_sub_ca.pem │ │ │ ├── crls │ │ │ │ ├── CRL_11_crl.pem.crl │ │ │ │ └── CRL_11_root_crl.pem.crl │ │ │ └── description.txt │ │ ├── CRL_12 │ │ │ ├── CRL_12_ee.TC.pem.crt │ │ │ ├── CRL_12_ee.pem │ │ │ ├── CRL_12_root_ca.TA.pem.crt │ │ │ ├── CRL_12_root_ca.pem │ │ │ ├── CRL_12_sub_ca.ca.pem.crt │ │ │ ├── CRL_12_sub_ca.pem │ │ │ ├── crls │ │ │ │ ├── CRL_12_crl.pem.crl │ │ │ │ └── CRL_12_root_crl.pem.crl │ │ │ └── description.txt │ │ ├── CRL_13 │ │ │ ├── CRL_13_ee.TC.pem.crt │ │ │ ├── CRL_13_ee.pem │ │ │ ├── CRL_13_root_ca.TA.pem.crt │ │ │ ├── CRL_13_root_ca.pem │ │ │ ├── CRL_13_sub_ca.ca.pem.crt │ │ │ ├── CRL_13_sub_ca.pem │ │ │ ├── crls │ │ │ │ ├── CRL_13_crl.pem.crl │ │ │ │ └── CRL_13_root_crl.pem.crl │ │ │ └── description.txt │ │ ├── CRL_14 │ │ │ ├── CRL_14_ee.TC.pem.crt │ │ │ ├── CRL_14_ee.pem │ │ │ ├── CRL_14_root_ca.TA.pem.crt │ │ │ ├── CRL_14_root_ca.pem │ │ │ ├── CRL_14_sub_ca.ca.pem.crt │ │ │ ├── CRL_14_sub_ca.pem │ │ │ ├── crls │ │ │ │ ├── CRL_14_crl.pem.crl │ │ │ │ └── CRL_14_root_crl.pem.crl │ │ │ └── description.txt │ │ ├── CRL_15 │ │ │ ├── CRL_15_ee.TC.pem.crt │ │ │ ├── CRL_15_ee.pem │ │ │ ├── CRL_15_root_ca.TA.pem.crt │ │ │ ├── CRL_15_root_ca.pem │ │ │ ├── CRL_15_sub_ca.ca.pem.crt │ │ │ ├── CRL_15_sub_ca.pem │ │ │ ├── crls │ │ │ │ └── CRL_15_crl.pem.crl │ │ │ └── description.txt │ │ ├── CRL_16 │ │ │ ├── CRL_16_ee.TC.pem.crt │ │ │ ├── CRL_16_ee.pem │ │ │ ├── CRL_16_root_ca.TA.pem.crt │ │ │ ├── CRL_16_root_ca.pem │ │ │ ├── CRL_16_sub_ca.ca.pem.crt │ │ │ ├── CRL_16_sub_ca.pem │ │ │ ├── crls │ │ │ │ ├── CRL_16_crl.pem.crl │ │ │ │ └── CRL_16_root_crl.pem.crl │ │ │ └── description.txt │ │ ├── algo_strength_01 │ │ │ ├── algo_strength_01_ee.TC.pem.crt │ │ │ ├── algo_strength_01_ee.pem │ │ │ ├── algo_strength_01_root_ca.TA.pem.crt │ │ │ ├── algo_strength_01_root_ca.pem │ │ │ ├── algo_strength_01_sub_ca.ca.pem.crt │ │ │ ├── algo_strength_01_sub_ca.pem │ │ │ └── description.txt │ │ ├── algo_strength_02 │ │ │ ├── algo_strength_02_ee.TC.pem.crt │ │ │ ├── algo_strength_02_ee.pem │ │ │ ├── algo_strength_02_root_ca.TA.pem.crt │ │ │ ├── algo_strength_02_root_ca.pem │ │ │ ├── algo_strength_02_sub_ca.ca.pem.crt │ │ │ ├── algo_strength_02_sub_ca.pem │ │ │ └── description.txt │ │ ├── algo_strength_03 │ │ │ ├── algo_strength_03_ee.TC.pem.crt │ │ │ ├── algo_strength_03_ee.pem │ │ │ ├── algo_strength_03_root_ca.TA.pem.crt │ │ │ ├── algo_strength_03_root_ca.pem │ │ │ ├── algo_strength_03_sub_ca.ca.pem.crt │ │ │ ├── algo_strength_03_sub_ca.pem │ │ │ └── description.txt │ │ ├── common_01 │ │ │ ├── common_01_ee.TC.pem.crt │ │ │ ├── common_01_ee.pem │ │ │ ├── common_01_root_ca.TA.pem.crt │ │ │ ├── common_01_root_ca.pem │ │ │ ├── common_01_sub_ca.ca.pem.crt │ │ │ ├── common_01_sub_ca.pem │ │ │ └── description.txt │ │ ├── common_02 │ │ │ ├── common_02_ee.TC.pem.crt │ │ │ ├── common_02_ee.pem │ │ │ ├── common_02_root_ca.ca.pem.crt │ │ │ ├── common_02_root_ca.pem │ │ │ ├── common_02_sub_ca.ca.pem.crt │ │ │ ├── common_02_sub_ca.pem │ │ │ └── description.txt │ │ ├── common_03 │ │ │ ├── common_03_ee.TC.pem.crt │ │ │ ├── common_03_ee.pem │ │ │ ├── common_03_root_ca.TA.pem.crt │ │ │ ├── common_03_root_ca.pem │ │ │ ├── common_03_sub_ca.ca.pem.crt │ │ │ ├── common_03_sub_ca.pem │ │ │ └── description.txt │ │ ├── common_04 │ │ │ ├── common_04_ee.TC.pem.crt │ │ │ ├── common_04_ee.pem │ │ │ ├── common_04_root_ca.TA.pem.crt │ │ │ ├── common_04_root_ca.pem │ │ │ ├── common_04_sub_ca.ca.pem.crt │ │ │ ├── common_04_sub_ca.pem │ │ │ └── description.txt │ │ ├── common_05 │ │ │ ├── common_05_ee.TC.pem.crt │ │ │ ├── common_05_ee.pem │ │ │ ├── common_05_root_ca.TA.pem.crt │ │ │ ├── common_05_root_ca.pem │ │ │ ├── common_05_sub_ca.ca.pem.crt │ │ │ ├── common_05_sub_ca.pem │ │ │ └── description.txt │ │ ├── common_06 │ │ │ ├── common_06_ee.TC.pem.crt │ │ │ ├── common_06_ee.pem │ │ │ ├── common_06_root_ca.TA.pem.crt │ │ │ ├── common_06_root_ca.pem │ │ │ ├── common_06_sub_ca.ca.pem.crt │ │ │ ├── common_06_sub_ca.pem │ │ │ └── description.txt │ │ ├── common_07 │ │ │ ├── common_07_ee.TC.pem.crt │ │ │ ├── common_07_ee.pem │ │ │ ├── common_07_root_ca.TA.pem.crt │ │ │ ├── common_07_root_ca.pem │ │ │ ├── common_07_sub_ca.ca.pem.crt │ │ │ ├── common_07_sub_ca.pem │ │ │ └── description.txt │ │ ├── common_08 │ │ │ ├── common_08_ee.TC.pem.crt │ │ │ ├── common_08_ee.pem │ │ │ ├── common_08_root_ca.TA.pem.crt │ │ │ ├── common_08_root_ca.pem │ │ │ ├── common_08_sub_ca.ca.pem.crt │ │ │ ├── common_08_sub_ca.pem │ │ │ └── description.txt │ │ ├── common_09 │ │ │ ├── common_09_ee.TC.pem.crt │ │ │ ├── common_09_ee.pem │ │ │ ├── common_09_root_ca.TA.pem.crt │ │ │ ├── common_09_root_ca.pem │ │ │ ├── common_09_sub_ca.ca.pem.crt │ │ │ ├── common_09_sub_ca.pem │ │ │ └── description.txt │ │ ├── common_10 │ │ │ ├── common_10_ee.TC.pem.crt │ │ │ ├── common_10_ee.pem │ │ │ ├── common_10_root_ca.TA.pem.crt │ │ │ ├── common_10_root_ca.pem │ │ │ ├── common_10_sub_ca.ca.pem.crt │ │ │ ├── common_10_sub_ca.pem │ │ │ └── description.txt │ │ ├── common_11 │ │ │ ├── common_11_ee.TC.pem.crt │ │ │ ├── common_11_ee.pem │ │ │ ├── common_11_root_ca.TA.pem.crt │ │ │ ├── common_11_root_ca.pem │ │ │ ├── common_11_sub_ca.ca.pem.crt │ │ │ ├── common_11_sub_ca.pem │ │ │ └── description.txt │ │ ├── common_12 │ │ │ ├── common_12_ee.TC.pem.crt │ │ │ ├── common_12_ee.pem │ │ │ ├── common_12_root_ca.TA.pem.crt │ │ │ ├── common_12_root_ca.pem │ │ │ ├── common_12_sub_ca.ca.pem.crt │ │ │ ├── common_12_sub_ca.pem │ │ │ └── description.txt │ │ ├── common_13 │ │ │ ├── common_13_ee.TC.pem.crt │ │ │ ├── common_13_ee.pem │ │ │ ├── common_13_root_ca.TA.pem.crt │ │ │ ├── common_13_root_ca.pem │ │ │ ├── common_13_root_ca_key_rollover.ca.pem.crt │ │ │ ├── common_13_root_ca_key_rollover.pem │ │ │ ├── common_13_subca_ca_key_rollover.ca.pem.crt │ │ │ ├── common_13_subca_ca_key_rollover.pem │ │ │ └── description.txt │ │ ├── common_14 │ │ │ ├── common_14_ee.TC.pem.crt │ │ │ ├── common_14_ee.pem │ │ │ ├── common_14_root_ca.TA.pem.crt │ │ │ ├── common_14_root_ca.pem │ │ │ ├── common_14_sub_ca.ca.pem.crt │ │ │ ├── common_14_sub_ca.pem │ │ │ ├── common_14_wrong_root_ca.ca.pem.crt │ │ │ ├── common_14_wrong_root_ca.pem │ │ │ ├── common_14_wrong_sub_ca.ca.pem.crt │ │ │ ├── common_14_wrong_sub_ca.pem │ │ │ └── description.txt │ │ ├── crypt_01 │ │ │ ├── crypt_01_ee.TC.pem.crt │ │ │ ├── crypt_01_ee.pem │ │ │ ├── crypt_01_root_ca.TA.pem.crt │ │ │ ├── crypt_01_root_ca.pem │ │ │ ├── crypt_01_sub_ca.ca.pem.crt │ │ │ ├── crypt_01_sub_ca.pem │ │ │ └── description.txt │ │ ├── crypt_02 │ │ │ ├── crypt_02_ee.TC.pem.crt │ │ │ ├── crypt_02_ee.pem │ │ │ ├── crypt_02_root_ca.TA.pem.crt │ │ │ ├── crypt_02_root_ca.pem │ │ │ ├── crypt_02_sub_ca.ca.pem.crt │ │ │ ├── crypt_02_sub_ca.pem │ │ │ └── description.txt │ │ ├── expected.txt │ │ ├── ext_01 │ │ │ ├── description.txt │ │ │ ├── ext_01_ee.TC.pem.crt │ │ │ ├── ext_01_ee.pem │ │ │ ├── ext_01_root_ca.TA.pem.crt │ │ │ ├── ext_01_root_ca.pem │ │ │ ├── ext_01_sub_ca.ca.pem.crt │ │ │ └── ext_01_sub_ca.pem │ │ ├── ext_02 │ │ │ ├── description.txt │ │ │ ├── ext_02_ee.TC.pem.crt │ │ │ ├── ext_02_ee.pem │ │ │ ├── ext_02_root_ca.TA.pem.crt │ │ │ ├── ext_02_root_ca.pem │ │ │ ├── ext_02_sub_ca.ca.pem.crt │ │ │ └── ext_02_sub_ca.pem │ │ ├── ext_03 │ │ │ ├── description.txt │ │ │ ├── ext_03_ee.TC.pem.crt │ │ │ ├── ext_03_ee.pem │ │ │ ├── ext_03_root_ca.TA.pem.crt │ │ │ ├── ext_03_root_ca.pem │ │ │ ├── ext_03_sub_ca.ca.pem.crt │ │ │ └── ext_03_sub_ca.pem │ │ ├── ext_04 │ │ │ ├── description.txt │ │ │ ├── ext_04_ee.TC.pem.crt │ │ │ ├── ext_04_ee.pem │ │ │ ├── ext_04_root_ca.TA.pem.crt │ │ │ ├── ext_04_root_ca.pem │ │ │ ├── ext_04_sub_ca.ca.pem.crt │ │ │ └── ext_04_sub_ca.pem │ │ ├── ext_05 │ │ │ ├── description.txt │ │ │ ├── ext_05_ee.TC.pem.crt │ │ │ ├── ext_05_ee.pem │ │ │ ├── ext_05_root_ca.TA.pem.crt │ │ │ ├── ext_05_root_ca.pem │ │ │ ├── ext_05_sub_ca.ca.pem.crt │ │ │ └── ext_05_sub_ca.pem │ │ ├── ext_06 │ │ │ ├── description.txt │ │ │ ├── ext_06_ee.TC.pem.crt │ │ │ ├── ext_06_ee.pem │ │ │ ├── ext_06_root_ca.TA.pem.crt │ │ │ ├── ext_06_root_ca.pem │ │ │ ├── ext_06_sub_ca.ca.pem.crt │ │ │ └── ext_06_sub_ca.pem │ │ ├── ext_07 │ │ │ ├── description.txt │ │ │ ├── ext_07_ee.TC.pem.crt │ │ │ ├── ext_07_ee.pem │ │ │ ├── ext_07_root_ca.TA.pem.crt │ │ │ ├── ext_07_root_ca.pem │ │ │ ├── ext_07_sub_ca.ca.pem.crt │ │ │ └── ext_07_sub_ca.pem │ │ ├── ext_08 │ │ │ ├── description.txt │ │ │ ├── ext_08_ee.TC.pem.crt │ │ │ ├── ext_08_ee.pem │ │ │ ├── ext_08_root_ca.TA.pem.crt │ │ │ ├── ext_08_root_ca.pem │ │ │ ├── ext_08_sub_ca_l1.ca.pem.crt │ │ │ ├── ext_08_sub_ca_l1.pem │ │ │ ├── ext_08_sub_ca_l2.ca.pem.crt │ │ │ └── ext_08_sub_ca_l2.pem │ │ ├── ext_09 │ │ │ ├── description.txt │ │ │ ├── ext_09_ee.TC.pem.crt │ │ │ ├── ext_09_ee.pem │ │ │ ├── ext_09_root_ca.TA.pem.crt │ │ │ ├── ext_09_root_ca.pem │ │ │ ├── ext_09_sub_ca.ca.pem.crt │ │ │ └── ext_09_sub_ca.pem │ │ ├── ext_10 │ │ │ ├── description.txt │ │ │ ├── ext_10_ee.TC.pem.crt │ │ │ ├── ext_10_ee.pem │ │ │ ├── ext_10_root_ca.TA.pem.crt │ │ │ ├── ext_10_root_ca.pem │ │ │ ├── ext_10_sub_ca.ca.pem.crt │ │ │ └── ext_10_sub_ca.pem │ │ ├── ext_11 │ │ │ ├── description.txt │ │ │ ├── ext_11_ee.TC.pem.crt │ │ │ ├── ext_11_ee.pem │ │ │ ├── ext_11_root_ca.TA.pem.crt │ │ │ ├── ext_11_root_ca.pem │ │ │ ├── ext_11_sub_ca.ca.pem.crt │ │ │ └── ext_11_sub_ca.pem │ │ ├── ext_12 │ │ │ ├── description.txt │ │ │ ├── ext_12_ee.TC.pem.crt │ │ │ ├── ext_12_ee.pem │ │ │ ├── ext_12_root_ca.TA.pem.crt │ │ │ ├── ext_12_root_ca.pem │ │ │ ├── ext_12_sub_ca.ca.pem.crt │ │ │ └── ext_12_sub_ca.pem │ │ ├── ext_13 │ │ │ ├── description.txt │ │ │ ├── ext_13_ee.TC.pem.crt │ │ │ ├── ext_13_ee.pem │ │ │ ├── ext_13_root_ca.TA.pem.crt │ │ │ ├── ext_13_root_ca.pem │ │ │ ├── ext_13_sub_ca.ca.pem.crt │ │ │ └── ext_13_sub_ca.pem │ │ ├── ext_14 │ │ │ ├── description.txt │ │ │ ├── ext_14_root_ca.TA.pem.crt │ │ │ ├── ext_14_root_ca.pem │ │ │ ├── ext_14_sub_ca.TC.pem.crt │ │ │ └── ext_14_sub_ca.pem │ │ ├── ext_15 │ │ │ ├── description.txt │ │ │ ├── ext_15_ee.TC.pem.crt │ │ │ ├── ext_15_ee.pem │ │ │ ├── ext_15_root_ca.TA.pem.crt │ │ │ ├── ext_15_root_ca.pem │ │ │ ├── ext_15_sub_ca.ca.pem.crt │ │ │ └── ext_15_sub_ca.pem │ │ ├── ext_16 │ │ │ ├── description.txt │ │ │ ├── ext_16_ee.TC.pem.crt │ │ │ ├── ext_16_ee.pem │ │ │ ├── ext_16_root_ca.TA.pem.crt │ │ │ ├── ext_16_root_ca.pem │ │ │ ├── ext_16_sub_ca.ca.pem.crt │ │ │ └── ext_16_sub_ca.pem │ │ ├── ext_17 │ │ │ ├── description.txt │ │ │ ├── ext_17_ee.TC.pem.crt │ │ │ ├── ext_17_ee.pem │ │ │ ├── ext_17_root_ca.TA.pem.crt │ │ │ ├── ext_17_root_ca.pem │ │ │ ├── ext_17_sub_ca.ca.pem.crt │ │ │ └── ext_17_sub_ca.pem │ │ ├── ext_18 │ │ │ ├── description.txt │ │ │ ├── ext_18_ee.TC.pem.crt │ │ │ ├── ext_18_ee.pem │ │ │ ├── ext_18_root_ca.TA.pem.crt │ │ │ ├── ext_18_root_ca.pem │ │ │ ├── ext_18_sub_ca.ca.pem.crt │ │ │ └── ext_18_sub_ca.pem │ │ ├── ext_19 │ │ │ ├── description.txt │ │ │ ├── ext_19_ee.TC.pem.crt │ │ │ ├── ext_19_ee.pem │ │ │ ├── ext_19_root_ca.TA.pem.crt │ │ │ ├── ext_19_root_ca.pem │ │ │ ├── ext_19_sub_ca_l1.ca.pem.crt │ │ │ ├── ext_19_sub_ca_l1.pem │ │ │ ├── ext_19_sub_ca_l2.ca.pem.crt │ │ │ └── ext_19_sub_ca_l2.pem │ │ └── readme.txt │ ├── certstor │ │ ├── cert1.crt │ │ ├── cert2.crt │ │ ├── cert3.crt │ │ ├── cert4.crt │ │ ├── cert5a.crt │ │ ├── cert5b.crt │ │ ├── key01.pem │ │ ├── key03.pem │ │ ├── key04.pem │ │ ├── key05.pem │ │ └── key06.pem │ ├── cve-2020-0601 │ │ ├── ca.pem │ │ ├── ee.pem │ │ └── fake_ca.pem │ ├── ecc │ │ ├── CSCA.CSCA.csca-germany.1.crt │ │ ├── ecc_private_with_rfc5915_ext.pem │ │ ├── ecc_private_with_rfc5915_parameters.pem │ │ ├── isrg-root-x2.pem │ │ ├── link_SHA1.166.crt │ │ ├── link_SHA256.cer │ │ ├── root2_SHA256.cer │ │ ├── root_SHA1.163.crt │ │ └── secp384r1_seed.pem │ ├── extended │ │ ├── 01 │ │ │ ├── end.crt │ │ │ ├── int.crt │ │ │ └── root.crt │ │ ├── 02 │ │ │ ├── end.crt │ │ │ ├── int1-2.crt │ │ │ ├── int1.crt │ │ │ └── root.crt │ │ ├── 03 │ │ │ ├── end.crt │ │ │ ├── int1.crt │ │ │ └── root.crt │ │ └── expected.txt │ ├── gost │ │ ├── gost_int.pem │ │ └── gost_root.pem │ ├── misc │ │ ├── bundledcertdir │ │ │ └── ValidCert.pem │ │ ├── cert_seq.der │ │ ├── certstor │ │ │ ├── ca_bundle_containing_non_ca.pem │ │ │ └── valid_ca_bundle.pem │ │ ├── contains_authority_info_access.pem │ │ ├── contains_authority_info_access_with_two_ca_issuers.pem │ │ ├── contains_bmpstring.pem │ │ ├── contains_utf8string.pem │ │ ├── crl_without_nextupdate │ │ │ ├── 01.pem │ │ │ ├── 42.pem │ │ │ ├── README.md │ │ │ ├── ca.pem │ │ │ └── valid_forever.crl │ │ ├── name_constraint_ci │ │ │ ├── int.pem │ │ │ ├── leaf.pem │ │ │ └── root.pem │ │ ├── nc_skip_self │ │ │ ├── int.pem │ │ │ ├── leaf.pem │ │ │ └── root.pem │ │ ├── opcuactt_ca.der │ │ ├── opcuactt_ca.pem │ │ ├── rdn_set.crt │ │ ├── root_cert_time_check │ │ │ ├── README.md │ │ │ ├── leaf.crt │ │ │ └── root.crt │ │ ├── rsa_key.pem │ │ ├── rsa_oaep.pem │ │ ├── rsa_pss.pem │ │ ├── self-signed-end-entity.pem │ │ ├── teletex_dn.der │ │ └── v1ca │ │ │ ├── ee.pem │ │ │ ├── int.pem │ │ │ └── root.pem │ ├── name_constraint │ │ ├── Invalid_DN_Name_Constraint.crt │ │ ├── Invalid_Email_Name_Constraint.crt │ │ ├── Invalid_IP_Name_Constraint.crt │ │ ├── Root_DNS_Name_Constraint.crt │ │ ├── Root_DN_Name_Constraint.crt │ │ ├── Root_Email_Name_Constraint.crt │ │ ├── Root_IP_Name_Constraint.crt │ │ ├── Valid_DNS_Name_Constraint.crt │ │ ├── Valid_DN_Name_Constraint.crt │ │ └── Valid_IP_Name_Constraint.crt │ ├── name_constraint_san │ │ ├── int.pem │ │ ├── leaf.pem │ │ └── root.pem │ ├── nist │ │ ├── expected.txt │ │ ├── root.crl │ │ ├── root.crt │ │ ├── test01 │ │ │ └── end.crt │ │ ├── test02 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test03 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test04 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ └── int2.crt │ │ ├── test05 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test06 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test07 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test08 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test09 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test10 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test11 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test12 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test13 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test14 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test15 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test16 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test17 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test18 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test19 │ │ │ ├── end.crt │ │ │ └── int.crt │ │ ├── test20 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test21 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test22 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test23 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test24 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test25 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test26 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test27 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test28 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test29 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test30 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test31 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test32 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test33 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test34 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test35 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test36 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ └── int2.crt │ │ ├── test37 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ └── int2.crt │ │ ├── test38 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ └── int2.crt │ │ ├── test39 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ ├── int2.crt │ │ │ ├── int3.crl │ │ │ └── int3.crt │ │ ├── test40 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ ├── int2.crt │ │ │ ├── int3.crl │ │ │ └── int3.crt │ │ ├── test41 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ ├── int2.crt │ │ │ ├── int3.crl │ │ │ └── int3.crt │ │ ├── test42 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ ├── int2.crt │ │ │ ├── int3.crl │ │ │ ├── int3.crt │ │ │ ├── int4.crl │ │ │ └── int4.crt │ │ ├── test43 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ ├── int2.crt │ │ │ ├── int3.crl │ │ │ ├── int3.crt │ │ │ ├── int4.crl │ │ │ └── int4.crt │ │ ├── test44 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ ├── int2.crt │ │ │ ├── int3.crl │ │ │ ├── int3.crt │ │ │ ├── int4.crl │ │ │ └── int4.crt │ │ ├── test45 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ ├── int2.crt │ │ │ ├── int3.crl │ │ │ ├── int3.crt │ │ │ ├── int4.crl │ │ │ └── int4.crt │ │ ├── test46 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ ├── int2.crt │ │ │ ├── int3.crl │ │ │ ├── int3.crt │ │ │ ├── int4.crl │ │ │ └── int4.crt │ │ ├── test47 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ ├── int2.crt │ │ │ ├── int3.crl │ │ │ ├── int3.crt │ │ │ ├── int4.crl │ │ │ └── int4.crt │ │ ├── test48 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test49 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test50 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test51 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test52 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test53 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test54 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ └── int2.crt │ │ ├── test55 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ └── int2.crt │ │ ├── test56 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test57 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test58 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ ├── int2.crt │ │ │ ├── int3.crl │ │ │ └── int3.crt │ │ ├── test59 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ ├── int2.crt │ │ │ ├── int3.crl │ │ │ └── int3.crt │ │ ├── test60 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ ├── int2.crt │ │ │ ├── int3.crl │ │ │ ├── int3.crt │ │ │ ├── int4.crl │ │ │ └── int4.crt │ │ ├── test61 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ ├── int2.crt │ │ │ ├── int3.crl │ │ │ ├── int3.crt │ │ │ ├── int4.crl │ │ │ └── int4.crt │ │ ├── test62 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ ├── int2.crt │ │ │ ├── int3.crl │ │ │ ├── int3.crt │ │ │ ├── int4.crl │ │ │ └── int4.crt │ │ ├── test63 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ ├── int2.crt │ │ │ ├── int3.crl │ │ │ ├── int3.crt │ │ │ ├── int4.crl │ │ │ └── int4.crt │ │ ├── test64 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test65 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ ├── int1.crt │ │ │ └── int2.crt │ │ ├── test66 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test67 │ │ │ ├── end.crt │ │ │ ├── int.crt │ │ │ ├── int1.crl │ │ │ └── int2.crl │ │ ├── test68 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ └── int2.crt │ │ ├── test69 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test70 │ │ │ ├── end.crt │ │ │ ├── int1.crl │ │ │ ├── int1.crt │ │ │ ├── int2.crl │ │ │ └── int2.crt │ │ ├── test71 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test72 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test73 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test74 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ ├── test75 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ │ └── test76 │ │ │ ├── end.crt │ │ │ ├── int.crl │ │ │ └── int.crt │ ├── ocsp │ │ ├── bdr-int-ocsp-resp.der │ │ ├── bdr-int.pem │ │ ├── bdr-ocsp-resp.der │ │ ├── bdr-ocsp-responder.pem │ │ ├── bdr-root.pem │ │ ├── bdr.pem │ │ ├── bdrive_encryption.pem │ │ ├── bdrive_root.pem │ │ ├── digicert-ecdsa-int.pem │ │ ├── digicert-root.pem │ │ ├── geotrust.pem │ │ ├── gmail.pem │ │ ├── google_g2.pem │ │ ├── identrust.pem │ │ ├── letsencrypt.pem │ │ ├── mychain_ee.pem │ │ ├── mychain_int.pem │ │ ├── mychain_int_ocsp_delegate_responder.pem │ │ ├── mychain_int_ocsp_delegate_responder_no_ocsp_key_usage.pem │ │ ├── mychain_ocsp_for_ee.der │ │ ├── mychain_ocsp_for_ee_delegate_signed.der │ │ ├── mychain_ocsp_for_ee_delegate_signed_malformed.der │ │ ├── mychain_ocsp_for_ee_root_signed.der │ │ ├── mychain_ocsp_for_int_self_signed.der │ │ ├── mychain_root.pem │ │ ├── patrickschmidt.pem │ │ ├── patrickschmidt_ocsp.der │ │ ├── patrickschmidt_ocsp_try_later_wrong_sig.der │ │ ├── randombit.pem │ │ ├── randombit_ocsp.der │ │ ├── randombit_ocsp_forged_responder.pem │ │ ├── randombit_ocsp_forged_revoked.der │ │ ├── randombit_ocsp_forged_valid.der │ │ ├── randombit_ocsp_forged_valid_nocerts.der │ │ ├── resp1.der │ │ ├── resp2.der │ │ └── resp3.der │ ├── pss_certs │ │ ├── 10 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 11 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 12 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 13 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 14 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 15 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 16 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 17 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 18 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 19 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 20 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 21 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 22 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 23 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 24 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 25 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 26 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 27 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 28 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 29 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 30 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 31 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 32 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 33 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 34 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 35 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 36 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 37 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 38 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 39 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 40 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 41 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 42 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 43 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 44 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 45 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 46 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 47 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 48 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 49 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 50 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 51 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 52 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 53 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 54 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 55 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 56 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 57 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 58 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 59 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 60 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 61 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 62 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 63 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 64 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 65 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 66 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 67 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 68 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 69 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 70 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 71 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 72 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 73 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 74 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 75 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 76 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 77 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 78 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 79 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 80 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 81 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 82 │ │ │ └── end.crt │ │ ├── 83 │ │ │ └── end.crt │ │ ├── 84 │ │ │ └── end.crt │ │ ├── 85 │ │ │ └── end.crt │ │ ├── 86 │ │ │ └── end.crt │ │ ├── 87 │ │ │ └── end.crt │ │ ├── 88 │ │ │ └── end.crt │ │ ├── 89 │ │ │ └── end.crt │ │ ├── 90 │ │ │ └── end.crt │ │ ├── 91 │ │ │ └── end.crt │ │ ├── 92 │ │ │ └── end.crt │ │ ├── 93 │ │ │ └── end.crt │ │ ├── 94 │ │ │ └── end.crt │ │ ├── 95 │ │ │ └── end.crt │ │ ├── 96 │ │ │ └── end.crt │ │ ├── 97 │ │ │ ├── README.txt │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 98 │ │ │ ├── README.txt │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 99 │ │ │ ├── README.txt │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 100 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 101 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 102 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 103 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 104 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 105 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 106 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 107 │ │ │ └── end.crt │ │ ├── 108 │ │ │ ├── crl-rsa-pss-sha1.crl │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 109 │ │ │ ├── README.txt │ │ │ ├── crl-rsa-pss-sha1-badsign.crl │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 110 │ │ │ ├── crl-rsa-pss-sha224.crl │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 111 │ │ │ ├── crl-rsa-pss-sha256.crl │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 112 │ │ │ ├── crl-rsa-pss-sha384.crl │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 113 │ │ │ ├── crl-rsa-pss-sha512.crl │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 114 │ │ │ └── server9.req.sha1.csr │ │ ├── 115 │ │ │ └── server9.req.sha224.csr │ │ ├── 116 │ │ │ └── server9.req.sha256.csr │ │ ├── 117 │ │ │ └── server9.req.sha384.csr │ │ ├── 118 │ │ │ └── server9.req.sha512.csr │ │ ├── 01 │ │ │ ├── README.txt │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 02 │ │ │ ├── README.txt │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 03 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 04 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 05 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 06 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 07 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 08 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── 09 │ │ │ ├── end.crt │ │ │ └── root.crt │ │ ├── Sources.txt │ │ ├── expected.txt │ │ └── validation_times.txt │ ├── v2-in-v1 │ │ ├── int.pem │ │ ├── leaf.pem │ │ └── root.pem │ ├── x509test │ │ ├── ASNumberCert.pem │ │ ├── ASNumberInherit.pem │ │ ├── ASNumberOnly.pem │ │ ├── ASRdiOnly.pem │ │ ├── IPAddrBlocksAll.pem │ │ ├── IPAddrBlocksUnsorted.pem │ │ ├── InvalidExtendedKeyUsage.pem │ │ ├── InvalidIPAddrBlocks.pem │ │ ├── InvalidIntCAFlag.pem │ │ ├── InvalidIntCAKeyUsage.pem │ │ ├── InvalidIntCALen.pem │ │ ├── InvalidIntCALoop.pem │ │ ├── InvalidIntCASelfSign.pem │ │ ├── InvalidIntCAVersionOne.pem │ │ ├── InvalidIntCAVersionTwo.pem │ │ ├── InvalidKeyUsage.pem │ │ ├── InvalidName.pem │ │ ├── InvalidNameAltName.pem │ │ ├── InvalidNameAltNameWithSubj.pem │ │ ├── InvalidNameConstraintExclude.pem │ │ ├── InvalidNameConstraintPermit.pem │ │ ├── InvalidNameConstraintPermitRight.pem │ │ ├── InvalidNameConstraintPermitThenExclude.pem │ │ ├── InvalidNotAfter.pem │ │ ├── InvalidNotAfterChained.pem │ │ ├── InvalidSelfSign.pem │ │ ├── InvalidWildcardAll.pem │ │ ├── InvalidWildcardAllAltName.pem │ │ ├── InvalidWildcardLeft.pem │ │ ├── InvalidWildcardLeftAltName.pem │ │ ├── InvalidWildcardMid.pem │ │ ├── InvalidWildcardMidAltName.pem │ │ ├── InvalidWildcardMidMixed.pem │ │ ├── InvalidWildcardMidMixedAltName.pem │ │ ├── InvalidWildcardSingle.pem │ │ ├── InvalidWildcardSingleAltName.pem │ │ ├── MissingIntCABasicConstraintWithCertSign.pem │ │ ├── MissingIntCAExtensions.pem │ │ ├── TNAuthList.pem │ │ ├── ValidAltName.pem │ │ ├── ValidCert.pem │ │ ├── ValidChained.pem │ │ ├── ValidIntCALen.pem │ │ ├── ValidNameConstraint.pem │ │ ├── ValidWildcard.pem │ │ ├── expected.txt │ │ └── root.pem │ └── xmss │ │ ├── xmss_bouncycastle_sha256_10_root.pem │ │ └── xmss_isara_root.pem ├── x509_dn.vec ├── xof │ ├── aes256_ctr.vec │ ├── ascon_xof128.vec │ ├── cshake.vec │ └── shake.vec └── zfec.vec ├── main.cpp ├── runner ├── test_reporter.cpp ├── test_reporter.h ├── test_runner.cpp ├── test_runner.h ├── test_stdout_reporter.cpp ├── test_stdout_reporter.h ├── test_xml_reporter.cpp └── test_xml_reporter.h ├── test_aead.cpp ├── test_alt_name.cpp ├── test_asn1.cpp ├── test_bigint.cpp ├── test_block.cpp ├── test_blowfish.cpp ├── test_bufcomp.cpp ├── test_certstor.cpp ├── test_certstor_flatfile.cpp ├── test_certstor_system.cpp ├── test_certstor_utils.cpp ├── test_certstor_utils.h ├── test_cmce.cpp ├── test_codec.cpp ├── test_compression.cpp ├── test_cryptobox.cpp ├── test_crystals.cpp ├── test_ct_utils.cpp ├── test_dh.cpp ├── test_dilithium.cpp ├── test_dl_group.cpp ├── test_dlies.cpp ├── test_dsa.cpp ├── test_ec_group.cpp ├── test_ecc_h2c.cpp ├── test_ecc_pointmul.cpp ├── test_ecdh.cpp ├── test_ecdsa.cpp ├── test_ecgdsa.cpp ├── test_ecies.cpp ├── test_eckcdsa.cpp ├── test_ed25519.cpp ├── test_ed448.cpp ├── test_elgamal.cpp ├── test_entropy.cpp ├── test_ffi.cpp ├── test_filters.cpp ├── test_fpe.cpp ├── test_frodokem.cpp ├── test_gf2m.cpp ├── test_gost_3410.cpp ├── test_hash.cpp ├── test_hash_id.cpp ├── test_hss_lms.cpp ├── test_jitter_rng.cpp ├── test_kdf.cpp ├── test_keccak_helpers.cpp ├── test_keywrap.cpp ├── test_kyber.cpp ├── test_lmots.cpp ├── test_lms.cpp ├── test_mac.cpp ├── test_mceliece.cpp ├── test_ml_dsa.cpp ├── test_modes.cpp ├── test_monty.cpp ├── test_mp.cpp ├── test_name_constraint.cpp ├── test_ocb.cpp ├── test_ocsp.cpp ├── test_octetstring.cpp ├── test_oid.cpp ├── test_os_utils.cpp ├── test_otp.cpp ├── test_pad.cpp ├── test_passhash.cpp ├── test_pbkdf.cpp ├── test_pem.cpp ├── test_pk_pad.cpp ├── test_pkcs11.h ├── test_pkcs11_high_level.cpp ├── test_pkcs11_low_level.cpp ├── test_psk_db.cpp ├── test_pubkey.cpp ├── test_pubkey.h ├── test_pubkey_pqc.h ├── test_rfc6979.cpp ├── test_rng.h ├── test_rng_behavior.cpp ├── test_rng_kat.cpp ├── test_rngs.cpp ├── test_roughtime.cpp ├── test_rsa.cpp ├── test_simd.cpp ├── test_siv.cpp ├── test_sm2.cpp ├── test_sodium.cpp ├── test_sphincsplus.cpp ├── test_sphincsplus_fors.cpp ├── test_sphincsplus_utils.cpp ├── test_sphincsplus_wots.cpp ├── test_srp6.cpp ├── test_stream.cpp ├── test_strong_type.cpp ├── test_tests.cpp ├── test_thread_utils.cpp ├── test_tls.cpp ├── test_tls_cipher_state.cpp ├── test_tls_handshake_layer_13.cpp ├── test_tls_handshake_state_13.cpp ├── test_tls_handshake_transitions.cpp ├── test_tls_hybrid_kem_key.cpp ├── test_tls_messages.cpp ├── test_tls_record_layer_13.cpp ├── test_tls_rfc8448.cpp ├── test_tls_session_manager.cpp ├── test_tls_signature_scheme.cpp ├── test_tls_stream_integration.cpp ├── test_tls_transcript_hash_13.cpp ├── test_tpm.cpp ├── test_tpm2.cpp ├── test_tss.cpp ├── test_uri.cpp ├── test_utils.cpp ├── test_utils_bitvector.cpp ├── test_utils_buffer.cpp ├── test_workfactor.cpp ├── test_x25519.cpp ├── test_x448.cpp ├── test_x509_dn.cpp ├── test_x509_path.cpp ├── test_x509_rpki.cpp ├── test_xmss.cpp ├── test_xof.cpp ├── test_zfec.cpp ├── tests.cpp ├── tests.h ├── unit_asio_stream.cpp ├── unit_ecdsa.cpp ├── unit_tls.cpp ├── unit_tls_policy.cpp └── unit_x509.cpp /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/.devcontainer/startup.sh -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- 1 | ../src/scripts/ci/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/cifuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/.github/workflows/cifuzz.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/.gitignore -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/configure.py -------------------------------------------------------------------------------- /doc/abi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/abi.rst -------------------------------------------------------------------------------- /doc/api_ref/bigint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/bigint.rst -------------------------------------------------------------------------------- /doc/api_ref/block_cipher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/block_cipher.rst -------------------------------------------------------------------------------- /doc/api_ref/cipher_modes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/cipher_modes.rst -------------------------------------------------------------------------------- /doc/api_ref/compression.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/compression.rst -------------------------------------------------------------------------------- /doc/api_ref/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/contents.rst -------------------------------------------------------------------------------- /doc/api_ref/cryptobox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/cryptobox.rst -------------------------------------------------------------------------------- /doc/api_ref/ec_group.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/ec_group.rst -------------------------------------------------------------------------------- /doc/api_ref/ecc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/ecc.rst -------------------------------------------------------------------------------- /doc/api_ref/env_vars.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/env_vars.rst -------------------------------------------------------------------------------- /doc/api_ref/ffi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/ffi.rst -------------------------------------------------------------------------------- /doc/api_ref/filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/filters.rst -------------------------------------------------------------------------------- /doc/api_ref/footguns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/footguns.rst -------------------------------------------------------------------------------- /doc/api_ref/fpe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/fpe.rst -------------------------------------------------------------------------------- /doc/api_ref/hash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/hash.rst -------------------------------------------------------------------------------- /doc/api_ref/kdf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/kdf.rst -------------------------------------------------------------------------------- /doc/api_ref/keywrap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/keywrap.rst -------------------------------------------------------------------------------- /doc/api_ref/otp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/otp.rst -------------------------------------------------------------------------------- /doc/api_ref/passhash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/passhash.rst -------------------------------------------------------------------------------- /doc/api_ref/pbkdf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/pbkdf.rst -------------------------------------------------------------------------------- /doc/api_ref/pkcs11.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/pkcs11.rst -------------------------------------------------------------------------------- /doc/api_ref/providers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/providers.rst -------------------------------------------------------------------------------- /doc/api_ref/psk_db.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/psk_db.rst -------------------------------------------------------------------------------- /doc/api_ref/pubkey.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/pubkey.rst -------------------------------------------------------------------------------- /doc/api_ref/python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/python.rst -------------------------------------------------------------------------------- /doc/api_ref/rng.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/rng.rst -------------------------------------------------------------------------------- /doc/api_ref/roughtime.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/roughtime.rst -------------------------------------------------------------------------------- /doc/api_ref/secmem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/secmem.rst -------------------------------------------------------------------------------- /doc/api_ref/sodium.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/sodium.rst -------------------------------------------------------------------------------- /doc/api_ref/srp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/srp.rst -------------------------------------------------------------------------------- /doc/api_ref/stream_ciphers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/stream_ciphers.rst -------------------------------------------------------------------------------- /doc/api_ref/tls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/tls.rst -------------------------------------------------------------------------------- /doc/api_ref/tpm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/tpm.rst -------------------------------------------------------------------------------- /doc/api_ref/tss.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/tss.rst -------------------------------------------------------------------------------- /doc/api_ref/versions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/versions.rst -------------------------------------------------------------------------------- /doc/api_ref/x509.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/x509.rst -------------------------------------------------------------------------------- /doc/api_ref/zfec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/api_ref/zfec.rst -------------------------------------------------------------------------------- /doc/authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/authors.txt -------------------------------------------------------------------------------- /doc/building.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/building.rst -------------------------------------------------------------------------------- /doc/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/cli.rst -------------------------------------------------------------------------------- /doc/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/contents.rst -------------------------------------------------------------------------------- /doc/credits.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/credits.rst -------------------------------------------------------------------------------- /doc/deprecated.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/deprecated.rst -------------------------------------------------------------------------------- /doc/dev_ref/configure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/dev_ref/configure.rst -------------------------------------------------------------------------------- /doc/dev_ref/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/dev_ref/contents.rst -------------------------------------------------------------------------------- /doc/dev_ref/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/dev_ref/contributing.rst -------------------------------------------------------------------------------- /doc/dev_ref/fuzzing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/dev_ref/fuzzing.rst -------------------------------------------------------------------------------- /doc/dev_ref/mistakes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/dev_ref/mistakes.rst -------------------------------------------------------------------------------- /doc/dev_ref/next_major.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/dev_ref/next_major.rst -------------------------------------------------------------------------------- /doc/dev_ref/oids.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/dev_ref/oids.rst -------------------------------------------------------------------------------- /doc/dev_ref/os.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/dev_ref/os.rst -------------------------------------------------------------------------------- /doc/dev_ref/pcurves.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/dev_ref/pcurves.rst -------------------------------------------------------------------------------- /doc/dev_ref/reading_list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/dev_ref/reading_list.rst -------------------------------------------------------------------------------- /doc/dev_ref/release_process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/dev_ref/release_process.rst -------------------------------------------------------------------------------- /doc/dev_ref/test_framework.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/dev_ref/test_framework.rst -------------------------------------------------------------------------------- /doc/dev_ref/todo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/dev_ref/todo.rst -------------------------------------------------------------------------------- /doc/goals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/goals.rst -------------------------------------------------------------------------------- /doc/hardware_acceleration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/hardware_acceleration.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/migration_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/migration_guide.rst -------------------------------------------------------------------------------- /doc/news_2x.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/news_2x.rst -------------------------------------------------------------------------------- /doc/old_news.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/old_news.rst -------------------------------------------------------------------------------- /doc/openssl_migration_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/openssl_migration_guide.rst -------------------------------------------------------------------------------- /doc/packaging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/packaging.rst -------------------------------------------------------------------------------- /doc/pgpkey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/pgpkey.txt -------------------------------------------------------------------------------- /doc/roadmap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/roadmap.rst -------------------------------------------------------------------------------- /doc/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/security.rst -------------------------------------------------------------------------------- /doc/sem_ver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/sem_ver.rst -------------------------------------------------------------------------------- /doc/side_channels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/side_channels.rst -------------------------------------------------------------------------------- /doc/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/support.rst -------------------------------------------------------------------------------- /doc/threat_model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/doc/threat_model.rst -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/license.txt -------------------------------------------------------------------------------- /news.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/news.rst -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/readme.rst -------------------------------------------------------------------------------- /src/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/.clang-tidy -------------------------------------------------------------------------------- /src/bogo_shim/bogo_shim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/bogo_shim/bogo_shim.cpp -------------------------------------------------------------------------------- /src/bogo_shim/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/bogo_shim/config.json -------------------------------------------------------------------------------- /src/build-data/arch/alpha.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/arch/alpha.txt -------------------------------------------------------------------------------- /src/build-data/arch/arm32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/arch/arm32.txt -------------------------------------------------------------------------------- /src/build-data/arch/arm64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/arch/arm64.txt -------------------------------------------------------------------------------- /src/build-data/arch/generic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/arch/generic.txt -------------------------------------------------------------------------------- /src/build-data/arch/hppa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/arch/hppa.txt -------------------------------------------------------------------------------- /src/build-data/arch/ia64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/arch/ia64.txt -------------------------------------------------------------------------------- /src/build-data/arch/llvm.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/build-data/arch/m68k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/arch/m68k.txt -------------------------------------------------------------------------------- /src/build-data/arch/mips32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/arch/mips32.txt -------------------------------------------------------------------------------- /src/build-data/arch/mips64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/arch/mips64.txt -------------------------------------------------------------------------------- /src/build-data/arch/powerpcspe.txt: -------------------------------------------------------------------------------- 1 | 2 | family ppc 3 | -------------------------------------------------------------------------------- /src/build-data/arch/ppc32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/arch/ppc32.txt -------------------------------------------------------------------------------- /src/build-data/arch/ppc64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/arch/ppc64.txt -------------------------------------------------------------------------------- /src/build-data/arch/riscv32.txt: -------------------------------------------------------------------------------- 1 | family riscv 2 | -------------------------------------------------------------------------------- /src/build-data/arch/riscv64.txt: -------------------------------------------------------------------------------- 1 | family riscv 2 | -------------------------------------------------------------------------------- /src/build-data/arch/s390.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/build-data/arch/s390x.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/build-data/arch/sparc32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/arch/sparc32.txt -------------------------------------------------------------------------------- /src/build-data/arch/sparc64.txt: -------------------------------------------------------------------------------- 1 | family sparc 2 | -------------------------------------------------------------------------------- /src/build-data/arch/superh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/arch/superh.txt -------------------------------------------------------------------------------- /src/build-data/arch/wasm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/arch/wasm.txt -------------------------------------------------------------------------------- /src/build-data/arch/x32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/arch/x32.txt -------------------------------------------------------------------------------- /src/build-data/arch/x86_32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/arch/x86_32.txt -------------------------------------------------------------------------------- /src/build-data/arch/x86_64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/arch/x86_64.txt -------------------------------------------------------------------------------- /src/build-data/botan.doxy.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/botan.doxy.in -------------------------------------------------------------------------------- /src/build-data/botan.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/botan.pc.in -------------------------------------------------------------------------------- /src/build-data/buildh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/buildh.in -------------------------------------------------------------------------------- /src/build-data/cc/clang.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/cc/clang.txt -------------------------------------------------------------------------------- /src/build-data/cc/clangcl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/cc/clangcl.txt -------------------------------------------------------------------------------- /src/build-data/cc/emcc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/cc/emcc.txt -------------------------------------------------------------------------------- /src/build-data/cc/gcc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/cc/gcc.txt -------------------------------------------------------------------------------- /src/build-data/cc/icc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/cc/icc.txt -------------------------------------------------------------------------------- /src/build-data/cc/msvc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/cc/msvc.txt -------------------------------------------------------------------------------- /src/build-data/cc/sunstudio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/cc/sunstudio.txt -------------------------------------------------------------------------------- /src/build-data/cc/xcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/cc/xcode.txt -------------------------------------------------------------------------------- /src/build-data/cc/xlc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/cc/xlc.txt -------------------------------------------------------------------------------- /src/build-data/detect_arch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/detect_arch.cpp -------------------------------------------------------------------------------- /src/build-data/ec_groups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/ec_groups.txt -------------------------------------------------------------------------------- /src/build-data/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/makefile.in -------------------------------------------------------------------------------- /src/build-data/module_info.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/module_info.in -------------------------------------------------------------------------------- /src/build-data/ninja.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/ninja.in -------------------------------------------------------------------------------- /src/build-data/oids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/oids.txt -------------------------------------------------------------------------------- /src/build-data/os/aix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/aix.txt -------------------------------------------------------------------------------- /src/build-data/os/android.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/android.txt -------------------------------------------------------------------------------- /src/build-data/os/cygwin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/cygwin.txt -------------------------------------------------------------------------------- /src/build-data/os/dragonfly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/dragonfly.txt -------------------------------------------------------------------------------- /src/build-data/os/freebsd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/freebsd.txt -------------------------------------------------------------------------------- /src/build-data/os/generic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/generic.txt -------------------------------------------------------------------------------- /src/build-data/os/haiku.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/haiku.txt -------------------------------------------------------------------------------- /src/build-data/os/hpux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/hpux.txt -------------------------------------------------------------------------------- /src/build-data/os/hurd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/hurd.txt -------------------------------------------------------------------------------- /src/build-data/os/ios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/ios.txt -------------------------------------------------------------------------------- /src/build-data/os/linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/linux.txt -------------------------------------------------------------------------------- /src/build-data/os/llvm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/llvm.txt -------------------------------------------------------------------------------- /src/build-data/os/macos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/macos.txt -------------------------------------------------------------------------------- /src/build-data/os/mingw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/mingw.txt -------------------------------------------------------------------------------- /src/build-data/os/netbsd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/netbsd.txt -------------------------------------------------------------------------------- /src/build-data/os/none.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/none.txt -------------------------------------------------------------------------------- /src/build-data/os/openbsd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/openbsd.txt -------------------------------------------------------------------------------- /src/build-data/os/qnx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/qnx.txt -------------------------------------------------------------------------------- /src/build-data/os/solaris.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/solaris.txt -------------------------------------------------------------------------------- /src/build-data/os/uwp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/uwp.txt -------------------------------------------------------------------------------- /src/build-data/os/windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/os/windows.txt -------------------------------------------------------------------------------- /src/build-data/policy/bsi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/policy/bsi.txt -------------------------------------------------------------------------------- /src/build-data/target_info.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/target_info.h.in -------------------------------------------------------------------------------- /src/build-data/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/build-data/version.txt -------------------------------------------------------------------------------- /src/cli/argon2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/argon2.cpp -------------------------------------------------------------------------------- /src/cli/argparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/argparse.h -------------------------------------------------------------------------------- /src/cli/asn1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/asn1.cpp -------------------------------------------------------------------------------- /src/cli/bcrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/bcrypt.cpp -------------------------------------------------------------------------------- /src/cli/cc_enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/cc_enc.cpp -------------------------------------------------------------------------------- /src/cli/cipher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/cipher.cpp -------------------------------------------------------------------------------- /src/cli/cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/cli.cpp -------------------------------------------------------------------------------- /src/cli/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/cli.h -------------------------------------------------------------------------------- /src/cli/cli_exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/cli_exceptions.h -------------------------------------------------------------------------------- /src/cli/cli_rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/cli_rng.cpp -------------------------------------------------------------------------------- /src/cli/codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/codec.cpp -------------------------------------------------------------------------------- /src/cli/compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/compress.cpp -------------------------------------------------------------------------------- /src/cli/entropy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/entropy.cpp -------------------------------------------------------------------------------- /src/cli/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/hash.cpp -------------------------------------------------------------------------------- /src/cli/hmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/hmac.cpp -------------------------------------------------------------------------------- /src/cli/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/main.cpp -------------------------------------------------------------------------------- /src/cli/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/math.cpp -------------------------------------------------------------------------------- /src/cli/pbkdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/pbkdf.cpp -------------------------------------------------------------------------------- /src/cli/perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/perf.cpp -------------------------------------------------------------------------------- /src/cli/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/perf.h -------------------------------------------------------------------------------- /src/cli/perf_ec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/perf_ec.cpp -------------------------------------------------------------------------------- /src/cli/perf_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/perf_math.cpp -------------------------------------------------------------------------------- /src/cli/perf_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/perf_misc.cpp -------------------------------------------------------------------------------- /src/cli/perf_pk_enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/perf_pk_enc.cpp -------------------------------------------------------------------------------- /src/cli/perf_pk_ka.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/perf_pk_ka.cpp -------------------------------------------------------------------------------- /src/cli/perf_pk_kem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/perf_pk_kem.cpp -------------------------------------------------------------------------------- /src/cli/perf_pk_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/perf_pk_misc.cpp -------------------------------------------------------------------------------- /src/cli/perf_pk_sig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/perf_pk_sig.cpp -------------------------------------------------------------------------------- /src/cli/perf_pwdhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/perf_pwdhash.cpp -------------------------------------------------------------------------------- /src/cli/perf_rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/perf_rng.cpp -------------------------------------------------------------------------------- /src/cli/perf_sym.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/perf_sym.cpp -------------------------------------------------------------------------------- /src/cli/perf_x509.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/perf_x509.cpp -------------------------------------------------------------------------------- /src/cli/pk_crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/pk_crypt.cpp -------------------------------------------------------------------------------- /src/cli/psk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/psk.cpp -------------------------------------------------------------------------------- /src/cli/pubkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/pubkey.cpp -------------------------------------------------------------------------------- /src/cli/roughtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/roughtime.cpp -------------------------------------------------------------------------------- /src/cli/sandbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/sandbox.cpp -------------------------------------------------------------------------------- /src/cli/sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/sandbox.h -------------------------------------------------------------------------------- /src/cli/socket_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/socket_utils.h -------------------------------------------------------------------------------- /src/cli/speed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/speed.cpp -------------------------------------------------------------------------------- /src/cli/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/timer.cpp -------------------------------------------------------------------------------- /src/cli/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/timer.h -------------------------------------------------------------------------------- /src/cli/timing_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/timing_tests.cpp -------------------------------------------------------------------------------- /src/cli/tls_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/tls_client.cpp -------------------------------------------------------------------------------- /src/cli/tls_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/tls_helpers.h -------------------------------------------------------------------------------- /src/cli/tls_http_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/tls_http_server.cpp -------------------------------------------------------------------------------- /src/cli/tls_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/tls_proxy.cpp -------------------------------------------------------------------------------- /src/cli/tls_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/tls_server.cpp -------------------------------------------------------------------------------- /src/cli/tls_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/tls_utils.cpp -------------------------------------------------------------------------------- /src/cli/tss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/tss.cpp -------------------------------------------------------------------------------- /src/cli/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/utils.cpp -------------------------------------------------------------------------------- /src/cli/x509.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/x509.cpp -------------------------------------------------------------------------------- /src/cli/zfec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/cli/zfec.cpp -------------------------------------------------------------------------------- /src/configs/clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/configs/clang-format -------------------------------------------------------------------------------- /src/configs/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/configs/codeql.yml -------------------------------------------------------------------------------- /src/configs/coverage.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/configs/coverage.rc -------------------------------------------------------------------------------- /src/configs/eclipse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/configs/eclipse.xml -------------------------------------------------------------------------------- /src/configs/pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/configs/pylint.rc -------------------------------------------------------------------------------- /src/configs/repo_config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/configs/repo_config.env -------------------------------------------------------------------------------- /src/configs/sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/configs/sphinx/conf.py -------------------------------------------------------------------------------- /src/configs/typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/configs/typos.toml -------------------------------------------------------------------------------- /src/ct_selftest/ct_selftest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/ct_selftest/ct_selftest.cpp -------------------------------------------------------------------------------- /src/ct_selftest/ct_selftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/ct_selftest/ct_selftest.py -------------------------------------------------------------------------------- /src/editors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/editors/README.md -------------------------------------------------------------------------------- /src/editors/editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/editors/editorconfig -------------------------------------------------------------------------------- /src/editors/emacs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/editors/emacs.el -------------------------------------------------------------------------------- /src/editors/vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/editors/vscode/launch.json -------------------------------------------------------------------------------- /src/editors/vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/editors/vscode/tasks.json -------------------------------------------------------------------------------- /src/examples/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/aes.cpp -------------------------------------------------------------------------------- /src/examples/aes_cbc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/aes_cbc.cpp -------------------------------------------------------------------------------- /src/examples/chacha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/chacha.cpp -------------------------------------------------------------------------------- /src/examples/check_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/check_key.cpp -------------------------------------------------------------------------------- /src/examples/cmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/cmac.cpp -------------------------------------------------------------------------------- /src/examples/dl_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/dl_group.cpp -------------------------------------------------------------------------------- /src/examples/ecdh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/ecdh.cpp -------------------------------------------------------------------------------- /src/examples/ecdsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/ecdsa.cpp -------------------------------------------------------------------------------- /src/examples/entropy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/entropy.cpp -------------------------------------------------------------------------------- /src/examples/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/ffi.c -------------------------------------------------------------------------------- /src/examples/fpe_alnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/fpe_alnum.cpp -------------------------------------------------------------------------------- /src/examples/fpe_dictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/fpe_dictionary.cpp -------------------------------------------------------------------------------- /src/examples/gmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/gmac.cpp -------------------------------------------------------------------------------- /src/examples/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/hash.cpp -------------------------------------------------------------------------------- /src/examples/hmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/hmac.cpp -------------------------------------------------------------------------------- /src/examples/kdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/kdf.cpp -------------------------------------------------------------------------------- /src/examples/ml_kem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/ml_kem.cpp -------------------------------------------------------------------------------- /src/examples/pkcs11_ecdh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/pkcs11_ecdh.cpp -------------------------------------------------------------------------------- /src/examples/pkcs11_ecdsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/pkcs11_ecdsa.cpp -------------------------------------------------------------------------------- /src/examples/pkcs11_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/pkcs11_module.cpp -------------------------------------------------------------------------------- /src/examples/pkcs11_objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/pkcs11_objects.cpp -------------------------------------------------------------------------------- /src/examples/pkcs11_rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/pkcs11_rng.cpp -------------------------------------------------------------------------------- /src/examples/pkcs11_rsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/pkcs11_rsa.cpp -------------------------------------------------------------------------------- /src/examples/pkcs11_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/pkcs11_session.cpp -------------------------------------------------------------------------------- /src/examples/pkcs11_slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/pkcs11_slot.cpp -------------------------------------------------------------------------------- /src/examples/pkcs11_x509.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/pkcs11_x509.cpp -------------------------------------------------------------------------------- /src/examples/pwdhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/pwdhash.cpp -------------------------------------------------------------------------------- /src/examples/rsa_encrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/rsa_encrypt.cpp -------------------------------------------------------------------------------- /src/examples/tls_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/tls_client.cpp -------------------------------------------------------------------------------- /src/examples/tls_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/tls_proxy.cpp -------------------------------------------------------------------------------- /src/examples/x509_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/x509_path.cpp -------------------------------------------------------------------------------- /src/examples/xmss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/examples/xmss.cpp -------------------------------------------------------------------------------- /src/fuzzer/asn1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/asn1.cpp -------------------------------------------------------------------------------- /src/fuzzer/barrett.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/barrett.cpp -------------------------------------------------------------------------------- /src/fuzzer/bn_cmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/bn_cmp.cpp -------------------------------------------------------------------------------- /src/fuzzer/bn_sqr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/bn_sqr.cpp -------------------------------------------------------------------------------- /src/fuzzer/cert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/cert.cpp -------------------------------------------------------------------------------- /src/fuzzer/crl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/crl.cpp -------------------------------------------------------------------------------- /src/fuzzer/divide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/divide.cpp -------------------------------------------------------------------------------- /src/fuzzer/ecc_bp256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/ecc_bp256.cpp -------------------------------------------------------------------------------- /src/fuzzer/ecc_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/ecc_helper.h -------------------------------------------------------------------------------- /src/fuzzer/ecc_p256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/ecc_p256.cpp -------------------------------------------------------------------------------- /src/fuzzer/ecc_p384.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/ecc_p384.cpp -------------------------------------------------------------------------------- /src/fuzzer/ecc_p521.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/ecc_p521.cpp -------------------------------------------------------------------------------- /src/fuzzer/fuzzers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/fuzzers.h -------------------------------------------------------------------------------- /src/fuzzer/gcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/gcd.cpp -------------------------------------------------------------------------------- /src/fuzzer/invert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/invert.cpp -------------------------------------------------------------------------------- /src/fuzzer/ipv4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/ipv4.cpp -------------------------------------------------------------------------------- /src/fuzzer/mem_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/mem_pool.cpp -------------------------------------------------------------------------------- /src/fuzzer/mode_padding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/mode_padding.cpp -------------------------------------------------------------------------------- /src/fuzzer/mp_comba_mul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/mp_comba_mul.cpp -------------------------------------------------------------------------------- /src/fuzzer/mp_comba_sqr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/mp_comba_sqr.cpp -------------------------------------------------------------------------------- /src/fuzzer/mp_fuzzers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/mp_fuzzers.h -------------------------------------------------------------------------------- /src/fuzzer/mp_redc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/mp_redc.cpp -------------------------------------------------------------------------------- /src/fuzzer/mp_redc_crandall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/mp_redc_crandall.cpp -------------------------------------------------------------------------------- /src/fuzzer/oaep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/oaep.cpp -------------------------------------------------------------------------------- /src/fuzzer/ocsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/ocsp.cpp -------------------------------------------------------------------------------- /src/fuzzer/os2ecp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/os2ecp.cpp -------------------------------------------------------------------------------- /src/fuzzer/pkcs1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/pkcs1.cpp -------------------------------------------------------------------------------- /src/fuzzer/pkcs8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/pkcs8.cpp -------------------------------------------------------------------------------- /src/fuzzer/pow_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/pow_mod.cpp -------------------------------------------------------------------------------- /src/fuzzer/ressol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/ressol.cpp -------------------------------------------------------------------------------- /src/fuzzer/tls_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/tls_client.cpp -------------------------------------------------------------------------------- /src/fuzzer/tls_client_hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/tls_client_hello.cpp -------------------------------------------------------------------------------- /src/fuzzer/tls_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/tls_server.cpp -------------------------------------------------------------------------------- /src/fuzzer/uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/uri.cpp -------------------------------------------------------------------------------- /src/fuzzer/x509_dn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/x509_dn.cpp -------------------------------------------------------------------------------- /src/fuzzer/x509_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/fuzzer/x509_path.cpp -------------------------------------------------------------------------------- /src/lib/asn1/alg_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/alg_id.cpp -------------------------------------------------------------------------------- /src/lib/asn1/asn1_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/asn1_obj.cpp -------------------------------------------------------------------------------- /src/lib/asn1/asn1_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/asn1_obj.h -------------------------------------------------------------------------------- /src/lib/asn1/asn1_oid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/asn1_oid.cpp -------------------------------------------------------------------------------- /src/lib/asn1/asn1_print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/asn1_print.cpp -------------------------------------------------------------------------------- /src/lib/asn1/asn1_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/asn1_print.h -------------------------------------------------------------------------------- /src/lib/asn1/asn1_str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/asn1_str.cpp -------------------------------------------------------------------------------- /src/lib/asn1/asn1_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/asn1_time.cpp -------------------------------------------------------------------------------- /src/lib/asn1/ber_dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/ber_dec.cpp -------------------------------------------------------------------------------- /src/lib/asn1/ber_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/ber_dec.h -------------------------------------------------------------------------------- /src/lib/asn1/der_enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/der_enc.cpp -------------------------------------------------------------------------------- /src/lib/asn1/der_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/der_enc.h -------------------------------------------------------------------------------- /src/lib/asn1/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/info.txt -------------------------------------------------------------------------------- /src/lib/asn1/oid_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/oid_map.cpp -------------------------------------------------------------------------------- /src/lib/asn1/oid_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/oid_map.h -------------------------------------------------------------------------------- /src/lib/asn1/oids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/oids.cpp -------------------------------------------------------------------------------- /src/lib/asn1/oids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/oids.h -------------------------------------------------------------------------------- /src/lib/asn1/pss_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/pss_params.cpp -------------------------------------------------------------------------------- /src/lib/asn1/pss_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/pss_params.h -------------------------------------------------------------------------------- /src/lib/asn1/static_oids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/asn1/static_oids.cpp -------------------------------------------------------------------------------- /src/lib/base/buf_comp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/base/buf_comp.cpp -------------------------------------------------------------------------------- /src/lib/base/buf_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/base/buf_comp.h -------------------------------------------------------------------------------- /src/lib/base/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/base/info.txt -------------------------------------------------------------------------------- /src/lib/base/secmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/base/secmem.h -------------------------------------------------------------------------------- /src/lib/base/sym_algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/base/sym_algo.cpp -------------------------------------------------------------------------------- /src/lib/base/sym_algo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/base/sym_algo.h -------------------------------------------------------------------------------- /src/lib/base/symkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/base/symkey.cpp -------------------------------------------------------------------------------- /src/lib/base/symkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/base/symkey.h -------------------------------------------------------------------------------- /src/lib/block/aes/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/aes/aes.cpp -------------------------------------------------------------------------------- /src/lib/block/aes/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/aes/aes.h -------------------------------------------------------------------------------- /src/lib/block/aes/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/aes/info.txt -------------------------------------------------------------------------------- /src/lib/block/aria/aria.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/aria/aria.cpp -------------------------------------------------------------------------------- /src/lib/block/aria/aria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/aria/aria.h -------------------------------------------------------------------------------- /src/lib/block/aria/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/aria/info.txt -------------------------------------------------------------------------------- /src/lib/block/block_cipher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/block_cipher.cpp -------------------------------------------------------------------------------- /src/lib/block/block_cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/block_cipher.h -------------------------------------------------------------------------------- /src/lib/block/blowfish/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/blowfish/info.txt -------------------------------------------------------------------------------- /src/lib/block/camellia/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/camellia/info.txt -------------------------------------------------------------------------------- /src/lib/block/cascade/cascade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/cascade/cascade.h -------------------------------------------------------------------------------- /src/lib/block/cascade/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/cascade/info.txt -------------------------------------------------------------------------------- /src/lib/block/cast128/cast128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/cast128/cast128.h -------------------------------------------------------------------------------- /src/lib/block/cast128/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/cast128/info.txt -------------------------------------------------------------------------------- /src/lib/block/des/des.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/des/des.cpp -------------------------------------------------------------------------------- /src/lib/block/des/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/des/des.h -------------------------------------------------------------------------------- /src/lib/block/des/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/des/info.txt -------------------------------------------------------------------------------- /src/lib/block/idea/idea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/idea/idea.cpp -------------------------------------------------------------------------------- /src/lib/block/idea/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/idea/idea.h -------------------------------------------------------------------------------- /src/lib/block/idea/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/idea/info.txt -------------------------------------------------------------------------------- /src/lib/block/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/info.txt -------------------------------------------------------------------------------- /src/lib/block/lion/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/lion/info.txt -------------------------------------------------------------------------------- /src/lib/block/lion/lion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/lion/lion.cpp -------------------------------------------------------------------------------- /src/lib/block/lion/lion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/lion/lion.h -------------------------------------------------------------------------------- /src/lib/block/noekeon/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/noekeon/info.txt -------------------------------------------------------------------------------- /src/lib/block/noekeon/noekeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/noekeon/noekeon.h -------------------------------------------------------------------------------- /src/lib/block/seed/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/seed/info.txt -------------------------------------------------------------------------------- /src/lib/block/seed/seed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/seed/seed.cpp -------------------------------------------------------------------------------- /src/lib/block/seed/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/seed/seed.h -------------------------------------------------------------------------------- /src/lib/block/serpent/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/serpent/info.txt -------------------------------------------------------------------------------- /src/lib/block/serpent/serpent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/serpent/serpent.h -------------------------------------------------------------------------------- /src/lib/block/shacal2/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/shacal2/info.txt -------------------------------------------------------------------------------- /src/lib/block/shacal2/shacal2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/shacal2/shacal2.h -------------------------------------------------------------------------------- /src/lib/block/sm4/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/sm4/info.txt -------------------------------------------------------------------------------- /src/lib/block/sm4/sm4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/sm4/sm4.cpp -------------------------------------------------------------------------------- /src/lib/block/sm4/sm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/sm4/sm4.h -------------------------------------------------------------------------------- /src/lib/block/twofish/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/twofish/info.txt -------------------------------------------------------------------------------- /src/lib/block/twofish/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/block/twofish/twofish.h -------------------------------------------------------------------------------- /src/lib/codec/base32/base32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/codec/base32/base32.cpp -------------------------------------------------------------------------------- /src/lib/codec/base32/base32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/codec/base32/base32.h -------------------------------------------------------------------------------- /src/lib/codec/base32/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/codec/base32/info.txt -------------------------------------------------------------------------------- /src/lib/codec/base58/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/codec/base58/base58.cpp -------------------------------------------------------------------------------- /src/lib/codec/base58/base58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/codec/base58/base58.h -------------------------------------------------------------------------------- /src/lib/codec/base58/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/codec/base58/info.txt -------------------------------------------------------------------------------- /src/lib/codec/base64/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/codec/base64/base64.cpp -------------------------------------------------------------------------------- /src/lib/codec/base64/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/codec/base64/base64.h -------------------------------------------------------------------------------- /src/lib/codec/base64/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/codec/base64/info.txt -------------------------------------------------------------------------------- /src/lib/codec/hex/hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/codec/hex/hex.cpp -------------------------------------------------------------------------------- /src/lib/codec/hex/hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/codec/hex/hex.h -------------------------------------------------------------------------------- /src/lib/codec/hex/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/codec/hex/info.txt -------------------------------------------------------------------------------- /src/lib/codec/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/codec/info.txt -------------------------------------------------------------------------------- /src/lib/compat/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/compat/info.txt -------------------------------------------------------------------------------- /src/lib/compat/sodium/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/compat/sodium/info.txt -------------------------------------------------------------------------------- /src/lib/compat/sodium/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/compat/sodium/sodium.h -------------------------------------------------------------------------------- /src/lib/compression/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/compression/info.txt -------------------------------------------------------------------------------- /src/lib/compression/lzma/lzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/compression/lzma/lzma.h -------------------------------------------------------------------------------- /src/lib/entropy/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/entropy/info.txt -------------------------------------------------------------------------------- /src/lib/ffi/ffi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi.h -------------------------------------------------------------------------------- /src/lib/ffi/ffi_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_block.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_cert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_cert.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_cipher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_cipher.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_ec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_ec.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_ec.h -------------------------------------------------------------------------------- /src/lib/ffi/ffi_fpe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_fpe.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_hash.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_hotp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_hotp.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_kdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_kdf.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_keywrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_keywrap.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_mac.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_mp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_mp.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_mp.h -------------------------------------------------------------------------------- /src/lib/ffi/ffi_oid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_oid.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_oid.h -------------------------------------------------------------------------------- /src/lib/ffi/ffi_pk_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_pk_op.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_pkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_pkey.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_pkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_pkey.h -------------------------------------------------------------------------------- /src/lib/ffi/ffi_rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_rng.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_rng.h -------------------------------------------------------------------------------- /src/lib/ffi/ffi_srp6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_srp6.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_totp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_totp.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_tpm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_tpm2.cpp -------------------------------------------------------------------------------- /src/lib/ffi/ffi_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_util.h -------------------------------------------------------------------------------- /src/lib/ffi/ffi_zfec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/ffi_zfec.cpp -------------------------------------------------------------------------------- /src/lib/ffi/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/ffi/info.txt -------------------------------------------------------------------------------- /src/lib/filters/b64_filt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/b64_filt.cpp -------------------------------------------------------------------------------- /src/lib/filters/basefilt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/basefilt.cpp -------------------------------------------------------------------------------- /src/lib/filters/buf_filt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/buf_filt.cpp -------------------------------------------------------------------------------- /src/lib/filters/data_snk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/data_snk.cpp -------------------------------------------------------------------------------- /src/lib/filters/data_snk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/data_snk.h -------------------------------------------------------------------------------- /src/lib/filters/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/filter.cpp -------------------------------------------------------------------------------- /src/lib/filters/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/filter.h -------------------------------------------------------------------------------- /src/lib/filters/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/filters.h -------------------------------------------------------------------------------- /src/lib/filters/hex_filt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/hex_filt.cpp -------------------------------------------------------------------------------- /src/lib/filters/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/info.txt -------------------------------------------------------------------------------- /src/lib/filters/out_buf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/out_buf.cpp -------------------------------------------------------------------------------- /src/lib/filters/out_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/out_buf.h -------------------------------------------------------------------------------- /src/lib/filters/pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/pipe.cpp -------------------------------------------------------------------------------- /src/lib/filters/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/pipe.h -------------------------------------------------------------------------------- /src/lib/filters/pipe_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/pipe_io.cpp -------------------------------------------------------------------------------- /src/lib/filters/pipe_rw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/pipe_rw.cpp -------------------------------------------------------------------------------- /src/lib/filters/secqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/secqueue.cpp -------------------------------------------------------------------------------- /src/lib/filters/secqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/filters/secqueue.h -------------------------------------------------------------------------------- /src/lib/hash/blake2/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/blake2/info.txt -------------------------------------------------------------------------------- /src/lib/hash/comb4p/comb4p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/comb4p/comb4p.h -------------------------------------------------------------------------------- /src/lib/hash/comb4p/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/comb4p/info.txt -------------------------------------------------------------------------------- /src/lib/hash/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/hash.cpp -------------------------------------------------------------------------------- /src/lib/hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/hash.h -------------------------------------------------------------------------------- /src/lib/hash/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/info.txt -------------------------------------------------------------------------------- /src/lib/hash/keccak/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/keccak/info.txt -------------------------------------------------------------------------------- /src/lib/hash/keccak/keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/keccak/keccak.h -------------------------------------------------------------------------------- /src/lib/hash/md4/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/md4/info.txt -------------------------------------------------------------------------------- /src/lib/hash/md4/md4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/md4/md4.cpp -------------------------------------------------------------------------------- /src/lib/hash/md4/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/md4/md4.h -------------------------------------------------------------------------------- /src/lib/hash/md5/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/md5/info.txt -------------------------------------------------------------------------------- /src/lib/hash/md5/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/md5/md5.cpp -------------------------------------------------------------------------------- /src/lib/hash/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/md5/md5.h -------------------------------------------------------------------------------- /src/lib/hash/rmd160/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/rmd160/info.txt -------------------------------------------------------------------------------- /src/lib/hash/rmd160/rmd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/rmd160/rmd160.h -------------------------------------------------------------------------------- /src/lib/hash/sha1/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/sha1/info.txt -------------------------------------------------------------------------------- /src/lib/hash/sha1/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/sha1/sha1.cpp -------------------------------------------------------------------------------- /src/lib/hash/sha1/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/sha1/sha1.h -------------------------------------------------------------------------------- /src/lib/hash/sha1/sha1_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/sha1/sha1_f.h -------------------------------------------------------------------------------- /src/lib/hash/sha3/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/sha3/info.txt -------------------------------------------------------------------------------- /src/lib/hash/sha3/sha3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/sha3/sha3.cpp -------------------------------------------------------------------------------- /src/lib/hash/sha3/sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/sha3/sha3.h -------------------------------------------------------------------------------- /src/lib/hash/shake/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/shake/info.txt -------------------------------------------------------------------------------- /src/lib/hash/shake/shake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/shake/shake.cpp -------------------------------------------------------------------------------- /src/lib/hash/shake/shake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/shake/shake.h -------------------------------------------------------------------------------- /src/lib/hash/skein/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/skein/info.txt -------------------------------------------------------------------------------- /src/lib/hash/sm3/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/sm3/info.txt -------------------------------------------------------------------------------- /src/lib/hash/sm3/sm3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/sm3/sm3.cpp -------------------------------------------------------------------------------- /src/lib/hash/sm3/sm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/hash/sm3/sm3.h -------------------------------------------------------------------------------- /src/lib/kdf/hkdf/hkdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/kdf/hkdf/hkdf.cpp -------------------------------------------------------------------------------- /src/lib/kdf/hkdf/hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/kdf/hkdf/hkdf.h -------------------------------------------------------------------------------- /src/lib/kdf/hkdf/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/kdf/hkdf/info.txt -------------------------------------------------------------------------------- /src/lib/kdf/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/kdf/info.txt -------------------------------------------------------------------------------- /src/lib/kdf/kdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/kdf/kdf.cpp -------------------------------------------------------------------------------- /src/lib/kdf/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/kdf/kdf.h -------------------------------------------------------------------------------- /src/lib/kdf/kdf1/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/kdf/kdf1/info.txt -------------------------------------------------------------------------------- /src/lib/kdf/kdf1/kdf1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/kdf/kdf1/kdf1.cpp -------------------------------------------------------------------------------- /src/lib/kdf/kdf1/kdf1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/kdf/kdf1/kdf1.h -------------------------------------------------------------------------------- /src/lib/kdf/kdf2/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/kdf/kdf2/info.txt -------------------------------------------------------------------------------- /src/lib/kdf/kdf2/kdf2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/kdf/kdf2/kdf2.cpp -------------------------------------------------------------------------------- /src/lib/kdf/kdf2/kdf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/kdf/kdf2/kdf2.h -------------------------------------------------------------------------------- /src/lib/kdf/prf_tls/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/kdf/prf_tls/info.txt -------------------------------------------------------------------------------- /src/lib/kdf/xmd/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/kdf/xmd/info.txt -------------------------------------------------------------------------------- /src/lib/kdf/xmd/xmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/kdf/xmd/xmd.cpp -------------------------------------------------------------------------------- /src/lib/kdf/xmd/xmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/kdf/xmd/xmd.h -------------------------------------------------------------------------------- /src/lib/mac/cmac/cmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/mac/cmac/cmac.cpp -------------------------------------------------------------------------------- /src/lib/mac/cmac/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/mac/cmac/cmac.h -------------------------------------------------------------------------------- /src/lib/mac/cmac/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/mac/cmac/info.txt -------------------------------------------------------------------------------- /src/lib/mac/gmac/gmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/mac/gmac/gmac.cpp -------------------------------------------------------------------------------- /src/lib/mac/gmac/gmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/mac/gmac/gmac.h -------------------------------------------------------------------------------- /src/lib/mac/gmac/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/mac/gmac/info.txt -------------------------------------------------------------------------------- /src/lib/mac/hmac/hmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/mac/hmac/hmac.cpp -------------------------------------------------------------------------------- /src/lib/mac/hmac/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/mac/hmac/hmac.h -------------------------------------------------------------------------------- /src/lib/mac/hmac/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/mac/hmac/info.txt -------------------------------------------------------------------------------- /src/lib/mac/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/mac/info.txt -------------------------------------------------------------------------------- /src/lib/mac/kmac/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/mac/kmac/info.txt -------------------------------------------------------------------------------- /src/lib/mac/kmac/kmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/mac/kmac/kmac.cpp -------------------------------------------------------------------------------- /src/lib/mac/kmac/kmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/mac/kmac/kmac.h -------------------------------------------------------------------------------- /src/lib/mac/mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/mac/mac.cpp -------------------------------------------------------------------------------- /src/lib/mac/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/mac/mac.h -------------------------------------------------------------------------------- /src/lib/mac/siphash/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/mac/siphash/info.txt -------------------------------------------------------------------------------- /src/lib/math/bigint/bigint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/math/bigint/bigint.h -------------------------------------------------------------------------------- /src/lib/math/bigint/divide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/math/bigint/divide.h -------------------------------------------------------------------------------- /src/lib/math/bigint/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/math/bigint/info.txt -------------------------------------------------------------------------------- /src/lib/math/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/math/info.txt -------------------------------------------------------------------------------- /src/lib/math/mp/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/math/mp/info.txt -------------------------------------------------------------------------------- /src/lib/math/mp/mp_asmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/math/mp/mp_asmi.h -------------------------------------------------------------------------------- /src/lib/math/mp/mp_comba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/math/mp/mp_comba.cpp -------------------------------------------------------------------------------- /src/lib/math/mp/mp_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/math/mp/mp_core.h -------------------------------------------------------------------------------- /src/lib/math/mp/mp_karat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/math/mp/mp_karat.cpp -------------------------------------------------------------------------------- /src/lib/math/mp/mp_monty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/math/mp/mp_monty.cpp -------------------------------------------------------------------------------- /src/lib/misc/hotp/hotp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/misc/hotp/hotp.cpp -------------------------------------------------------------------------------- /src/lib/misc/hotp/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/misc/hotp/info.txt -------------------------------------------------------------------------------- /src/lib/misc/hotp/otp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/misc/hotp/otp.h -------------------------------------------------------------------------------- /src/lib/misc/hotp/totp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/misc/hotp/totp.cpp -------------------------------------------------------------------------------- /src/lib/misc/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/misc/info.txt -------------------------------------------------------------------------------- /src/lib/misc/srp6/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/misc/srp6/info.txt -------------------------------------------------------------------------------- /src/lib/misc/srp6/srp6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/misc/srp6/srp6.cpp -------------------------------------------------------------------------------- /src/lib/misc/srp6/srp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/misc/srp6/srp6.h -------------------------------------------------------------------------------- /src/lib/misc/tss/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/misc/tss/info.txt -------------------------------------------------------------------------------- /src/lib/misc/tss/tss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/misc/tss/tss.cpp -------------------------------------------------------------------------------- /src/lib/misc/tss/tss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/misc/tss/tss.h -------------------------------------------------------------------------------- /src/lib/misc/zfec/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/misc/zfec/info.txt -------------------------------------------------------------------------------- /src/lib/misc/zfec/zfec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/misc/zfec/zfec.cpp -------------------------------------------------------------------------------- /src/lib/misc/zfec/zfec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/misc/zfec/zfec.h -------------------------------------------------------------------------------- /src/lib/modes/aead/aead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/aead/aead.cpp -------------------------------------------------------------------------------- /src/lib/modes/aead/aead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/aead/aead.h -------------------------------------------------------------------------------- /src/lib/modes/aead/ccm/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/aead/ccm/ccm.h -------------------------------------------------------------------------------- /src/lib/modes/aead/eax/eax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/aead/eax/eax.h -------------------------------------------------------------------------------- /src/lib/modes/aead/gcm/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/aead/gcm/gcm.h -------------------------------------------------------------------------------- /src/lib/modes/aead/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/aead/info.txt -------------------------------------------------------------------------------- /src/lib/modes/aead/ocb/ocb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/aead/ocb/ocb.h -------------------------------------------------------------------------------- /src/lib/modes/aead/siv/siv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/aead/siv/siv.h -------------------------------------------------------------------------------- /src/lib/modes/cbc/cbc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/cbc/cbc.cpp -------------------------------------------------------------------------------- /src/lib/modes/cbc/cbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/cbc/cbc.h -------------------------------------------------------------------------------- /src/lib/modes/cbc/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/cbc/info.txt -------------------------------------------------------------------------------- /src/lib/modes/cfb/cfb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/cfb/cfb.cpp -------------------------------------------------------------------------------- /src/lib/modes/cfb/cfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/cfb/cfb.h -------------------------------------------------------------------------------- /src/lib/modes/cfb/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/cfb/info.txt -------------------------------------------------------------------------------- /src/lib/modes/cipher_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/cipher_mode.h -------------------------------------------------------------------------------- /src/lib/modes/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/info.txt -------------------------------------------------------------------------------- /src/lib/modes/stream_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/stream_mode.h -------------------------------------------------------------------------------- /src/lib/modes/xts/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/xts/info.txt -------------------------------------------------------------------------------- /src/lib/modes/xts/xts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/xts/xts.cpp -------------------------------------------------------------------------------- /src/lib/modes/xts/xts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/modes/xts/xts.h -------------------------------------------------------------------------------- /src/lib/passhash/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/passhash/info.txt -------------------------------------------------------------------------------- /src/lib/pbkdf/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pbkdf/info.txt -------------------------------------------------------------------------------- /src/lib/pbkdf/pbkdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pbkdf/pbkdf.cpp -------------------------------------------------------------------------------- /src/lib/pbkdf/pbkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pbkdf/pbkdf.h -------------------------------------------------------------------------------- /src/lib/pbkdf/pwdhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pbkdf/pwdhash.cpp -------------------------------------------------------------------------------- /src/lib/pbkdf/pwdhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pbkdf/pwdhash.h -------------------------------------------------------------------------------- /src/lib/pk_pad/mgf1/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pk_pad/mgf1/info.txt -------------------------------------------------------------------------------- /src/lib/pk_pad/mgf1/mgf1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pk_pad/mgf1/mgf1.cpp -------------------------------------------------------------------------------- /src/lib/pk_pad/mgf1/mgf1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pk_pad/mgf1/mgf1.h -------------------------------------------------------------------------------- /src/lib/prov/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/prov/info.txt -------------------------------------------------------------------------------- /src/lib/prov/pkcs11/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/prov/pkcs11/info.txt -------------------------------------------------------------------------------- /src/lib/prov/pkcs11/p11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/prov/pkcs11/p11.cpp -------------------------------------------------------------------------------- /src/lib/prov/pkcs11/p11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/prov/pkcs11/p11.h -------------------------------------------------------------------------------- /src/lib/prov/pkcs11/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/prov/pkcs11/pkcs11.h -------------------------------------------------------------------------------- /src/lib/prov/tpm/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/prov/tpm/info.txt -------------------------------------------------------------------------------- /src/lib/prov/tpm/tpm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/prov/tpm/tpm.cpp -------------------------------------------------------------------------------- /src/lib/prov/tpm/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/prov/tpm/tpm.h -------------------------------------------------------------------------------- /src/lib/prov/tpm2/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/prov/tpm2/info.txt -------------------------------------------------------------------------------- /src/lib/prov/tpm2/tpm2_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/prov/tpm2/tpm2_key.h -------------------------------------------------------------------------------- /src/lib/prov/tpm2/tpm2_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/prov/tpm2/tpm2_rng.h -------------------------------------------------------------------------------- /src/lib/psk_db/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/psk_db/info.txt -------------------------------------------------------------------------------- /src/lib/psk_db/psk_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/psk_db/psk_db.cpp -------------------------------------------------------------------------------- /src/lib/psk_db/psk_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/psk_db/psk_db.h -------------------------------------------------------------------------------- /src/lib/pubkey/dh/dh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/dh/dh.cpp -------------------------------------------------------------------------------- /src/lib/pubkey/dh/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/dh/dh.h -------------------------------------------------------------------------------- /src/lib/pubkey/dh/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/dh/info.txt -------------------------------------------------------------------------------- /src/lib/pubkey/dlies/dlies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/dlies/dlies.h -------------------------------------------------------------------------------- /src/lib/pubkey/dsa/dsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/dsa/dsa.cpp -------------------------------------------------------------------------------- /src/lib/pubkey/dsa/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/dsa/dsa.h -------------------------------------------------------------------------------- /src/lib/pubkey/dsa/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/dsa/info.txt -------------------------------------------------------------------------------- /src/lib/pubkey/ecdh/ecdh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/ecdh/ecdh.cpp -------------------------------------------------------------------------------- /src/lib/pubkey/ecdh/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/ecdh/ecdh.h -------------------------------------------------------------------------------- /src/lib/pubkey/ecdh/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/ecdh/info.txt -------------------------------------------------------------------------------- /src/lib/pubkey/ecdsa/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/ecdsa/ecdsa.h -------------------------------------------------------------------------------- /src/lib/pubkey/ecies/ecies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/ecies/ecies.h -------------------------------------------------------------------------------- /src/lib/pubkey/hss_lms/hss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/hss_lms/hss.h -------------------------------------------------------------------------------- /src/lib/pubkey/hss_lms/lms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/hss_lms/lms.h -------------------------------------------------------------------------------- /src/lib/pubkey/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/info.txt -------------------------------------------------------------------------------- /src/lib/pubkey/mce/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/mce/info.txt -------------------------------------------------------------------------------- /src/lib/pubkey/pbes2/pbes2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/pbes2/pbes2.h -------------------------------------------------------------------------------- /src/lib/pubkey/pem/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/pem/info.txt -------------------------------------------------------------------------------- /src/lib/pubkey/pem/pem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/pem/pem.cpp -------------------------------------------------------------------------------- /src/lib/pubkey/pem/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/pem/pem.h -------------------------------------------------------------------------------- /src/lib/pubkey/pk_algs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/pk_algs.cpp -------------------------------------------------------------------------------- /src/lib/pubkey/pk_algs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/pk_algs.h -------------------------------------------------------------------------------- /src/lib/pubkey/pk_keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/pk_keys.cpp -------------------------------------------------------------------------------- /src/lib/pubkey/pk_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/pk_keys.h -------------------------------------------------------------------------------- /src/lib/pubkey/pk_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/pk_ops.cpp -------------------------------------------------------------------------------- /src/lib/pubkey/pk_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/pk_ops.h -------------------------------------------------------------------------------- /src/lib/pubkey/pk_ops_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/pk_ops_fwd.h -------------------------------------------------------------------------------- /src/lib/pubkey/pk_ops_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/pk_ops_impl.h -------------------------------------------------------------------------------- /src/lib/pubkey/pkcs8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/pkcs8.cpp -------------------------------------------------------------------------------- /src/lib/pubkey/pkcs8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/pkcs8.h -------------------------------------------------------------------------------- /src/lib/pubkey/pubkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/pubkey.cpp -------------------------------------------------------------------------------- /src/lib/pubkey/pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/pubkey.h -------------------------------------------------------------------------------- /src/lib/pubkey/rsa/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/rsa/info.txt -------------------------------------------------------------------------------- /src/lib/pubkey/rsa/rsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/rsa/rsa.cpp -------------------------------------------------------------------------------- /src/lib/pubkey/rsa/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/rsa/rsa.h -------------------------------------------------------------------------------- /src/lib/pubkey/sm2/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/sm2/info.txt -------------------------------------------------------------------------------- /src/lib/pubkey/sm2/sm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/sm2/sm2.cpp -------------------------------------------------------------------------------- /src/lib/pubkey/sm2/sm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/sm2/sm2.h -------------------------------------------------------------------------------- /src/lib/pubkey/workfactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/workfactor.h -------------------------------------------------------------------------------- /src/lib/pubkey/x509_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/x509_key.cpp -------------------------------------------------------------------------------- /src/lib/pubkey/x509_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/x509_key.h -------------------------------------------------------------------------------- /src/lib/pubkey/xmss/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/xmss/atomic.h -------------------------------------------------------------------------------- /src/lib/pubkey/xmss/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/xmss/info.txt -------------------------------------------------------------------------------- /src/lib/pubkey/xmss/xmss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/pubkey/xmss/xmss.h -------------------------------------------------------------------------------- /src/lib/rng/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/rng/info.txt -------------------------------------------------------------------------------- /src/lib/rng/rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/rng/rng.cpp -------------------------------------------------------------------------------- /src/lib/rng/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/rng/rng.h -------------------------------------------------------------------------------- /src/lib/stream/ctr/ctr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/stream/ctr/ctr.cpp -------------------------------------------------------------------------------- /src/lib/stream/ctr/ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/stream/ctr/ctr.h -------------------------------------------------------------------------------- /src/lib/stream/ctr/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/stream/ctr/info.txt -------------------------------------------------------------------------------- /src/lib/stream/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/stream/info.txt -------------------------------------------------------------------------------- /src/lib/stream/ofb/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/stream/ofb/info.txt -------------------------------------------------------------------------------- /src/lib/stream/ofb/ofb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/stream/ofb/ofb.cpp -------------------------------------------------------------------------------- /src/lib/stream/ofb/ofb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/stream/ofb/ofb.h -------------------------------------------------------------------------------- /src/lib/stream/rc4/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/stream/rc4/info.txt -------------------------------------------------------------------------------- /src/lib/stream/rc4/rc4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/stream/rc4/rc4.cpp -------------------------------------------------------------------------------- /src/lib/stream/rc4/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/stream/rc4/rc4.h -------------------------------------------------------------------------------- /src/lib/tls/asio/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/asio/info.txt -------------------------------------------------------------------------------- /src/lib/tls/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/info.txt -------------------------------------------------------------------------------- /src/lib/tls/msg_cert_req.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/msg_cert_req.cpp -------------------------------------------------------------------------------- /src/lib/tls/msg_finished.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/msg_finished.cpp -------------------------------------------------------------------------------- /src/lib/tls/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls.h -------------------------------------------------------------------------------- /src/lib/tls/tls12/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls12/info.txt -------------------------------------------------------------------------------- /src/lib/tls/tls13/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls13/info.txt -------------------------------------------------------------------------------- /src/lib/tls/tls_alert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_alert.cpp -------------------------------------------------------------------------------- /src/lib/tls/tls_alert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_alert.h -------------------------------------------------------------------------------- /src/lib/tls/tls_algos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_algos.cpp -------------------------------------------------------------------------------- /src/lib/tls/tls_algos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_algos.h -------------------------------------------------------------------------------- /src/lib/tls/tls_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_callbacks.h -------------------------------------------------------------------------------- /src/lib/tls/tls_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_channel.h -------------------------------------------------------------------------------- /src/lib/tls/tls_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_client.cpp -------------------------------------------------------------------------------- /src/lib/tls/tls_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_client.h -------------------------------------------------------------------------------- /src/lib/tls/tls_exceptn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_exceptn.h -------------------------------------------------------------------------------- /src/lib/tls/tls_extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_extensions.h -------------------------------------------------------------------------------- /src/lib/tls/tls_magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_magic.h -------------------------------------------------------------------------------- /src/lib/tls/tls_messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_messages.h -------------------------------------------------------------------------------- /src/lib/tls/tls_policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_policy.cpp -------------------------------------------------------------------------------- /src/lib/tls/tls_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_policy.h -------------------------------------------------------------------------------- /src/lib/tls/tls_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_reader.h -------------------------------------------------------------------------------- /src/lib/tls/tls_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_server.cpp -------------------------------------------------------------------------------- /src/lib/tls/tls_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_server.h -------------------------------------------------------------------------------- /src/lib/tls/tls_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_session.cpp -------------------------------------------------------------------------------- /src/lib/tls/tls_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_session.h -------------------------------------------------------------------------------- /src/lib/tls/tls_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_version.cpp -------------------------------------------------------------------------------- /src/lib/tls/tls_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/tls/tls_version.h -------------------------------------------------------------------------------- /src/lib/utils/allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/allocator.cpp -------------------------------------------------------------------------------- /src/lib/utils/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/allocator.h -------------------------------------------------------------------------------- /src/lib/utils/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/api.h -------------------------------------------------------------------------------- /src/lib/utils/assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/assert.cpp -------------------------------------------------------------------------------- /src/lib/utils/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/assert.h -------------------------------------------------------------------------------- /src/lib/utils/bit_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/bit_ops.h -------------------------------------------------------------------------------- /src/lib/utils/boost/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/boost/info.txt -------------------------------------------------------------------------------- /src/lib/utils/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/bswap.h -------------------------------------------------------------------------------- /src/lib/utils/calendar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/calendar.cpp -------------------------------------------------------------------------------- /src/lib/utils/calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/calendar.h -------------------------------------------------------------------------------- /src/lib/utils/charset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/charset.cpp -------------------------------------------------------------------------------- /src/lib/utils/charset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/charset.h -------------------------------------------------------------------------------- /src/lib/utils/codec_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/codec_base.h -------------------------------------------------------------------------------- /src/lib/utils/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/compiler.h -------------------------------------------------------------------------------- /src/lib/utils/concepts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/concepts.h -------------------------------------------------------------------------------- /src/lib/utils/cpuid/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/cpuid/cpuid.h -------------------------------------------------------------------------------- /src/lib/utils/cpuid/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/cpuid/info.txt -------------------------------------------------------------------------------- /src/lib/utils/ct_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/ct_utils.cpp -------------------------------------------------------------------------------- /src/lib/utils/ct_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/ct_utils.h -------------------------------------------------------------------------------- /src/lib/utils/data_src.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/data_src.cpp -------------------------------------------------------------------------------- /src/lib/utils/data_src.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/data_src.h -------------------------------------------------------------------------------- /src/lib/utils/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/database.h -------------------------------------------------------------------------------- /src/lib/utils/donna128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/donna128.h -------------------------------------------------------------------------------- /src/lib/utils/exceptn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/exceptn.cpp -------------------------------------------------------------------------------- /src/lib/utils/exceptn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/exceptn.h -------------------------------------------------------------------------------- /src/lib/utils/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/filesystem.cpp -------------------------------------------------------------------------------- /src/lib/utils/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/filesystem.h -------------------------------------------------------------------------------- /src/lib/utils/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/fmt.h -------------------------------------------------------------------------------- /src/lib/utils/ghash/ghash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/ghash/ghash.h -------------------------------------------------------------------------------- /src/lib/utils/ghash/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/ghash/info.txt -------------------------------------------------------------------------------- /src/lib/utils/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/info.txt -------------------------------------------------------------------------------- /src/lib/utils/int_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/int_utils.h -------------------------------------------------------------------------------- /src/lib/utils/isa_extn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/isa_extn.h -------------------------------------------------------------------------------- /src/lib/utils/loadstor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/loadstor.h -------------------------------------------------------------------------------- /src/lib/utils/mem_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/mem_ops.cpp -------------------------------------------------------------------------------- /src/lib/utils/mem_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/mem_ops.h -------------------------------------------------------------------------------- /src/lib/utils/mem_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/mem_utils.cpp -------------------------------------------------------------------------------- /src/lib/utils/mem_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/mem_utils.h -------------------------------------------------------------------------------- /src/lib/utils/mul128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/mul128.h -------------------------------------------------------------------------------- /src/lib/utils/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/mutex.h -------------------------------------------------------------------------------- /src/lib/utils/parsing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/parsing.cpp -------------------------------------------------------------------------------- /src/lib/utils/parsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/parsing.h -------------------------------------------------------------------------------- /src/lib/utils/prefetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/prefetch.cpp -------------------------------------------------------------------------------- /src/lib/utils/prefetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/prefetch.h -------------------------------------------------------------------------------- /src/lib/utils/read_cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/read_cfg.cpp -------------------------------------------------------------------------------- /src/lib/utils/read_kv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/read_kv.cpp -------------------------------------------------------------------------------- /src/lib/utils/rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/rotate.h -------------------------------------------------------------------------------- /src/lib/utils/rounding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/rounding.h -------------------------------------------------------------------------------- /src/lib/utils/scan_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/scan_name.cpp -------------------------------------------------------------------------------- /src/lib/utils/scan_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/scan_name.h -------------------------------------------------------------------------------- /src/lib/utils/simd/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/simd/info.txt -------------------------------------------------------------------------------- /src/lib/utils/socket/uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/socket/uri.cpp -------------------------------------------------------------------------------- /src/lib/utils/socket/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/socket/uri.h -------------------------------------------------------------------------------- /src/lib/utils/stl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/stl_util.h -------------------------------------------------------------------------------- /src/lib/utils/strong_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/strong_type.h -------------------------------------------------------------------------------- /src/lib/utils/time_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/time_utils.h -------------------------------------------------------------------------------- /src/lib/utils/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/types.h -------------------------------------------------------------------------------- /src/lib/utils/uuid/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/uuid/info.txt -------------------------------------------------------------------------------- /src/lib/utils/uuid/uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/uuid/uuid.cpp -------------------------------------------------------------------------------- /src/lib/utils/uuid/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/uuid/uuid.h -------------------------------------------------------------------------------- /src/lib/utils/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/version.cpp -------------------------------------------------------------------------------- /src/lib/utils/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/utils/version.h -------------------------------------------------------------------------------- /src/lib/x509/alt_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/alt_name.cpp -------------------------------------------------------------------------------- /src/lib/x509/cert_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/cert_status.cpp -------------------------------------------------------------------------------- /src/lib/x509/certstor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/certstor.cpp -------------------------------------------------------------------------------- /src/lib/x509/certstor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/certstor.h -------------------------------------------------------------------------------- /src/lib/x509/crl_ent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/crl_ent.cpp -------------------------------------------------------------------------------- /src/lib/x509/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/info.txt -------------------------------------------------------------------------------- /src/lib/x509/ocsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/ocsp.cpp -------------------------------------------------------------------------------- /src/lib/x509/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/ocsp.h -------------------------------------------------------------------------------- /src/lib/x509/ocsp_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/ocsp_types.cpp -------------------------------------------------------------------------------- /src/lib/x509/pkcs10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/pkcs10.cpp -------------------------------------------------------------------------------- /src/lib/x509/pkcs10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/pkcs10.h -------------------------------------------------------------------------------- /src/lib/x509/pkix_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/pkix_enums.h -------------------------------------------------------------------------------- /src/lib/x509/pkix_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/pkix_types.h -------------------------------------------------------------------------------- /src/lib/x509/x509_ca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509_ca.cpp -------------------------------------------------------------------------------- /src/lib/x509/x509_ca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509_ca.h -------------------------------------------------------------------------------- /src/lib/x509/x509_crl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509_crl.cpp -------------------------------------------------------------------------------- /src/lib/x509/x509_crl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509_crl.h -------------------------------------------------------------------------------- /src/lib/x509/x509_dn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509_dn.cpp -------------------------------------------------------------------------------- /src/lib/x509/x509_dn_ub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509_dn_ub.cpp -------------------------------------------------------------------------------- /src/lib/x509/x509_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509_ext.cpp -------------------------------------------------------------------------------- /src/lib/x509/x509_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509_ext.h -------------------------------------------------------------------------------- /src/lib/x509/x509_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509_obj.cpp -------------------------------------------------------------------------------- /src/lib/x509/x509_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509_obj.h -------------------------------------------------------------------------------- /src/lib/x509/x509_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509_utils.h -------------------------------------------------------------------------------- /src/lib/x509/x509cert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509cert.cpp -------------------------------------------------------------------------------- /src/lib/x509/x509cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509cert.h -------------------------------------------------------------------------------- /src/lib/x509/x509opt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509opt.cpp -------------------------------------------------------------------------------- /src/lib/x509/x509path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509path.cpp -------------------------------------------------------------------------------- /src/lib/x509/x509path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509path.h -------------------------------------------------------------------------------- /src/lib/x509/x509self.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509self.cpp -------------------------------------------------------------------------------- /src/lib/x509/x509self.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/x509/x509self.h -------------------------------------------------------------------------------- /src/lib/xof/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/xof/info.txt -------------------------------------------------------------------------------- /src/lib/xof/xof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/xof/xof.cpp -------------------------------------------------------------------------------- /src/lib/xof/xof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/lib/xof/xof.h -------------------------------------------------------------------------------- /src/python/botan3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/python/botan3.py -------------------------------------------------------------------------------- /src/scripts/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/scripts/bench.py -------------------------------------------------------------------------------- /src/scripts/build_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/scripts/build_docs.py -------------------------------------------------------------------------------- /src/scripts/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/scripts/check.py -------------------------------------------------------------------------------- /src/scripts/ci/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/scripts/ci/codecov.yml -------------------------------------------------------------------------------- /src/scripts/ci_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/scripts/ci_build.py -------------------------------------------------------------------------------- /src/scripts/cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/scripts/cleanup.py -------------------------------------------------------------------------------- /src/scripts/compare_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/scripts/compare_perf.py -------------------------------------------------------------------------------- /src/scripts/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/scripts/dist.py -------------------------------------------------------------------------------- /src/scripts/fuzzer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/scripts/fuzzer.xml -------------------------------------------------------------------------------- /src/scripts/gdb/strubtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/scripts/gdb/strubtest.py -------------------------------------------------------------------------------- /src/scripts/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/scripts/install.py -------------------------------------------------------------------------------- /src/scripts/repo_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/scripts/repo_config.py -------------------------------------------------------------------------------- /src/scripts/rewrite_lcov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/scripts/rewrite_lcov.py -------------------------------------------------------------------------------- /src/scripts/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/scripts/test_cli.py -------------------------------------------------------------------------------- /src/scripts/test_fuzzers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/scripts/test_fuzzers.py -------------------------------------------------------------------------------- /src/scripts/test_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/scripts/test_python.py -------------------------------------------------------------------------------- /src/scripts/tls_scanner/boa.txt: -------------------------------------------------------------------------------- 1 | bankofamerica.com 2 | -------------------------------------------------------------------------------- /src/scripts/website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/scripts/website.py -------------------------------------------------------------------------------- /src/tests/data/aead/ccm.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/aead/ccm.vec -------------------------------------------------------------------------------- /src/tests/data/aead/eax.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/aead/eax.vec -------------------------------------------------------------------------------- /src/tests/data/aead/gcm.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/aead/gcm.vec -------------------------------------------------------------------------------- /src/tests/data/aead/ocb.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/aead/ocb.vec -------------------------------------------------------------------------------- /src/tests/data/aead/siv.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/aead/siv.vec -------------------------------------------------------------------------------- /src/tests/data/argon2.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/argon2.vec -------------------------------------------------------------------------------- /src/tests/data/asn1_oid.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/asn1_oid.vec -------------------------------------------------------------------------------- /src/tests/data/asn1_time.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/asn1_time.vec -------------------------------------------------------------------------------- /src/tests/data/block/aes.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/block/aes.vec -------------------------------------------------------------------------------- /src/tests/data/block/des.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/block/des.vec -------------------------------------------------------------------------------- /src/tests/data/block/sm4.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/block/sm4.vec -------------------------------------------------------------------------------- /src/tests/data/bn/add.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/bn/add.vec -------------------------------------------------------------------------------- /src/tests/data/bn/cmp.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/bn/cmp.vec -------------------------------------------------------------------------------- /src/tests/data/bn/divide.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/bn/divide.vec -------------------------------------------------------------------------------- /src/tests/data/bn/gcd.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/bn/gcd.vec -------------------------------------------------------------------------------- /src/tests/data/bn/invmod.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/bn/invmod.vec -------------------------------------------------------------------------------- /src/tests/data/bn/jacobi.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/bn/jacobi.vec -------------------------------------------------------------------------------- /src/tests/data/bn/lshift.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/bn/lshift.vec -------------------------------------------------------------------------------- /src/tests/data/bn/mod.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/bn/mod.vec -------------------------------------------------------------------------------- /src/tests/data/bn/mul.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/bn/mul.vec -------------------------------------------------------------------------------- /src/tests/data/bn/powmod.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/bn/powmod.vec -------------------------------------------------------------------------------- /src/tests/data/bn/random.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/bn/random.vec -------------------------------------------------------------------------------- /src/tests/data/bn/rshift.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/bn/rshift.vec -------------------------------------------------------------------------------- /src/tests/data/bn/sqr.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/bn/sqr.vec -------------------------------------------------------------------------------- /src/tests/data/bn/sub.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/bn/sub.vec -------------------------------------------------------------------------------- /src/tests/data/charset.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/charset.vec -------------------------------------------------------------------------------- /src/tests/data/cryptobox.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/cryptobox.vec -------------------------------------------------------------------------------- /src/tests/data/dates.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/dates.vec -------------------------------------------------------------------------------- /src/tests/data/fpe_fe1.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/fpe_fe1.vec -------------------------------------------------------------------------------- /src/tests/data/hash/gost.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/hash/gost.vec -------------------------------------------------------------------------------- /src/tests/data/hash/md4.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/hash/md4.vec -------------------------------------------------------------------------------- /src/tests/data/hash/md5.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/hash/md5.vec -------------------------------------------------------------------------------- /src/tests/data/hash/sha1.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/hash/sha1.vec -------------------------------------------------------------------------------- /src/tests/data/hash/sha3.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/hash/sha3.vec -------------------------------------------------------------------------------- /src/tests/data/hash/sm3.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/hash/sm3.vec -------------------------------------------------------------------------------- /src/tests/data/hash_mc.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/hash_mc.vec -------------------------------------------------------------------------------- /src/tests/data/hash_rep.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/hash_rep.vec -------------------------------------------------------------------------------- /src/tests/data/hostnames.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/hostnames.vec -------------------------------------------------------------------------------- /src/tests/data/kdf/hkdf.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/kdf/hkdf.vec -------------------------------------------------------------------------------- /src/tests/data/kdf/kdf1.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/kdf/kdf1.vec -------------------------------------------------------------------------------- /src/tests/data/kdf/kdf2.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/kdf/kdf2.vec -------------------------------------------------------------------------------- /src/tests/data/mac/cmac.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/mac/cmac.vec -------------------------------------------------------------------------------- /src/tests/data/mac/gmac.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/mac/gmac.vec -------------------------------------------------------------------------------- /src/tests/data/mac/hmac.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/mac/hmac.vec -------------------------------------------------------------------------------- /src/tests/data/mac/kmac.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/mac/kmac.vec -------------------------------------------------------------------------------- /src/tests/data/modes/cbc.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/modes/cbc.vec -------------------------------------------------------------------------------- /src/tests/data/modes/cfb.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/modes/cfb.vec -------------------------------------------------------------------------------- /src/tests/data/modes/ctr.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/modes/ctr.vec -------------------------------------------------------------------------------- /src/tests/data/modes/xts.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/modes/xts.vec -------------------------------------------------------------------------------- /src/tests/data/otp/hotp.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/otp/hotp.vec -------------------------------------------------------------------------------- /src/tests/data/otp/totp.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/otp/totp.vec -------------------------------------------------------------------------------- /src/tests/data/pad.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/pad.vec -------------------------------------------------------------------------------- /src/tests/data/poly_dbl.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/poly_dbl.vec -------------------------------------------------------------------------------- /src/tests/data/pubkey/dh.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/pubkey/dh.vec -------------------------------------------------------------------------------- /src/tests/data/rfc6979.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/rfc6979.vec -------------------------------------------------------------------------------- /src/tests/data/scrypt.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/scrypt.vec -------------------------------------------------------------------------------- /src/tests/data/siv_ad.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/siv_ad.vec -------------------------------------------------------------------------------- /src/tests/data/srp6a.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/srp6a.vec -------------------------------------------------------------------------------- /src/tests/data/tls/alert.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/tls/alert.vec -------------------------------------------------------------------------------- /src/tests/data/tls_cbc.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/tls_cbc.vec -------------------------------------------------------------------------------- /src/tests/data/tls_null.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/tls_null.vec -------------------------------------------------------------------------------- /src/tests/data/utils/dns.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/utils/dns.vec -------------------------------------------------------------------------------- /src/tests/data/x509/pss_certs/01/README.txt: -------------------------------------------------------------------------------- 1 | default params -------------------------------------------------------------------------------- /src/tests/data/x509/pss_certs/02/README.txt: -------------------------------------------------------------------------------- 1 | empty params 2 | -------------------------------------------------------------------------------- /src/tests/data/x509/pss_certs/109/README.txt: -------------------------------------------------------------------------------- 1 | crl with invalid signature -------------------------------------------------------------------------------- /src/tests/data/x509/pss_certs/98/README.txt: -------------------------------------------------------------------------------- 1 | bad salt length -------------------------------------------------------------------------------- /src/tests/data/x509/pss_certs/99/README.txt: -------------------------------------------------------------------------------- 1 | bad signature -------------------------------------------------------------------------------- /src/tests/data/x509_dn.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/x509_dn.vec -------------------------------------------------------------------------------- /src/tests/data/xof/shake.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/xof/shake.vec -------------------------------------------------------------------------------- /src/tests/data/zfec.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/data/zfec.vec -------------------------------------------------------------------------------- /src/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/main.cpp -------------------------------------------------------------------------------- /src/tests/test_aead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_aead.cpp -------------------------------------------------------------------------------- /src/tests/test_alt_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_alt_name.cpp -------------------------------------------------------------------------------- /src/tests/test_asn1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_asn1.cpp -------------------------------------------------------------------------------- /src/tests/test_bigint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_bigint.cpp -------------------------------------------------------------------------------- /src/tests/test_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_block.cpp -------------------------------------------------------------------------------- /src/tests/test_blowfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_blowfish.cpp -------------------------------------------------------------------------------- /src/tests/test_bufcomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_bufcomp.cpp -------------------------------------------------------------------------------- /src/tests/test_certstor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_certstor.cpp -------------------------------------------------------------------------------- /src/tests/test_cmce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_cmce.cpp -------------------------------------------------------------------------------- /src/tests/test_codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_codec.cpp -------------------------------------------------------------------------------- /src/tests/test_cryptobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_cryptobox.cpp -------------------------------------------------------------------------------- /src/tests/test_crystals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_crystals.cpp -------------------------------------------------------------------------------- /src/tests/test_ct_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_ct_utils.cpp -------------------------------------------------------------------------------- /src/tests/test_dh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_dh.cpp -------------------------------------------------------------------------------- /src/tests/test_dilithium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_dilithium.cpp -------------------------------------------------------------------------------- /src/tests/test_dl_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_dl_group.cpp -------------------------------------------------------------------------------- /src/tests/test_dlies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_dlies.cpp -------------------------------------------------------------------------------- /src/tests/test_dsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_dsa.cpp -------------------------------------------------------------------------------- /src/tests/test_ec_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_ec_group.cpp -------------------------------------------------------------------------------- /src/tests/test_ecc_h2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_ecc_h2c.cpp -------------------------------------------------------------------------------- /src/tests/test_ecdh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_ecdh.cpp -------------------------------------------------------------------------------- /src/tests/test_ecdsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_ecdsa.cpp -------------------------------------------------------------------------------- /src/tests/test_ecgdsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_ecgdsa.cpp -------------------------------------------------------------------------------- /src/tests/test_ecies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_ecies.cpp -------------------------------------------------------------------------------- /src/tests/test_eckcdsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_eckcdsa.cpp -------------------------------------------------------------------------------- /src/tests/test_ed25519.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_ed25519.cpp -------------------------------------------------------------------------------- /src/tests/test_ed448.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_ed448.cpp -------------------------------------------------------------------------------- /src/tests/test_elgamal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_elgamal.cpp -------------------------------------------------------------------------------- /src/tests/test_entropy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_entropy.cpp -------------------------------------------------------------------------------- /src/tests/test_ffi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_ffi.cpp -------------------------------------------------------------------------------- /src/tests/test_filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_filters.cpp -------------------------------------------------------------------------------- /src/tests/test_fpe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_fpe.cpp -------------------------------------------------------------------------------- /src/tests/test_frodokem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_frodokem.cpp -------------------------------------------------------------------------------- /src/tests/test_gf2m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_gf2m.cpp -------------------------------------------------------------------------------- /src/tests/test_gost_3410.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_gost_3410.cpp -------------------------------------------------------------------------------- /src/tests/test_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_hash.cpp -------------------------------------------------------------------------------- /src/tests/test_hash_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_hash_id.cpp -------------------------------------------------------------------------------- /src/tests/test_hss_lms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_hss_lms.cpp -------------------------------------------------------------------------------- /src/tests/test_kdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_kdf.cpp -------------------------------------------------------------------------------- /src/tests/test_keywrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_keywrap.cpp -------------------------------------------------------------------------------- /src/tests/test_kyber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_kyber.cpp -------------------------------------------------------------------------------- /src/tests/test_lmots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_lmots.cpp -------------------------------------------------------------------------------- /src/tests/test_lms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_lms.cpp -------------------------------------------------------------------------------- /src/tests/test_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_mac.cpp -------------------------------------------------------------------------------- /src/tests/test_mceliece.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_mceliece.cpp -------------------------------------------------------------------------------- /src/tests/test_ml_dsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_ml_dsa.cpp -------------------------------------------------------------------------------- /src/tests/test_modes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_modes.cpp -------------------------------------------------------------------------------- /src/tests/test_monty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_monty.cpp -------------------------------------------------------------------------------- /src/tests/test_mp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_mp.cpp -------------------------------------------------------------------------------- /src/tests/test_ocb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_ocb.cpp -------------------------------------------------------------------------------- /src/tests/test_ocsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_ocsp.cpp -------------------------------------------------------------------------------- /src/tests/test_oid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_oid.cpp -------------------------------------------------------------------------------- /src/tests/test_os_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_os_utils.cpp -------------------------------------------------------------------------------- /src/tests/test_otp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_otp.cpp -------------------------------------------------------------------------------- /src/tests/test_pad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_pad.cpp -------------------------------------------------------------------------------- /src/tests/test_passhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_passhash.cpp -------------------------------------------------------------------------------- /src/tests/test_pbkdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_pbkdf.cpp -------------------------------------------------------------------------------- /src/tests/test_pem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_pem.cpp -------------------------------------------------------------------------------- /src/tests/test_pk_pad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_pk_pad.cpp -------------------------------------------------------------------------------- /src/tests/test_pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_pkcs11.h -------------------------------------------------------------------------------- /src/tests/test_psk_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_psk_db.cpp -------------------------------------------------------------------------------- /src/tests/test_pubkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_pubkey.cpp -------------------------------------------------------------------------------- /src/tests/test_pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_pubkey.h -------------------------------------------------------------------------------- /src/tests/test_pubkey_pqc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_pubkey_pqc.h -------------------------------------------------------------------------------- /src/tests/test_rfc6979.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_rfc6979.cpp -------------------------------------------------------------------------------- /src/tests/test_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_rng.h -------------------------------------------------------------------------------- /src/tests/test_rng_kat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_rng_kat.cpp -------------------------------------------------------------------------------- /src/tests/test_rngs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_rngs.cpp -------------------------------------------------------------------------------- /src/tests/test_roughtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_roughtime.cpp -------------------------------------------------------------------------------- /src/tests/test_rsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_rsa.cpp -------------------------------------------------------------------------------- /src/tests/test_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_simd.cpp -------------------------------------------------------------------------------- /src/tests/test_siv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_siv.cpp -------------------------------------------------------------------------------- /src/tests/test_sm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_sm2.cpp -------------------------------------------------------------------------------- /src/tests/test_sodium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_sodium.cpp -------------------------------------------------------------------------------- /src/tests/test_srp6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_srp6.cpp -------------------------------------------------------------------------------- /src/tests/test_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_stream.cpp -------------------------------------------------------------------------------- /src/tests/test_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_tests.cpp -------------------------------------------------------------------------------- /src/tests/test_tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_tls.cpp -------------------------------------------------------------------------------- /src/tests/test_tpm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_tpm.cpp -------------------------------------------------------------------------------- /src/tests/test_tpm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_tpm2.cpp -------------------------------------------------------------------------------- /src/tests/test_tss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_tss.cpp -------------------------------------------------------------------------------- /src/tests/test_uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_uri.cpp -------------------------------------------------------------------------------- /src/tests/test_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_utils.cpp -------------------------------------------------------------------------------- /src/tests/test_x25519.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_x25519.cpp -------------------------------------------------------------------------------- /src/tests/test_x448.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_x448.cpp -------------------------------------------------------------------------------- /src/tests/test_x509_dn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_x509_dn.cpp -------------------------------------------------------------------------------- /src/tests/test_x509_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_x509_path.cpp -------------------------------------------------------------------------------- /src/tests/test_x509_rpki.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_x509_rpki.cpp -------------------------------------------------------------------------------- /src/tests/test_xmss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_xmss.cpp -------------------------------------------------------------------------------- /src/tests/test_xof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_xof.cpp -------------------------------------------------------------------------------- /src/tests/test_zfec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/test_zfec.cpp -------------------------------------------------------------------------------- /src/tests/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/tests.cpp -------------------------------------------------------------------------------- /src/tests/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/tests.h -------------------------------------------------------------------------------- /src/tests/unit_ecdsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/unit_ecdsa.cpp -------------------------------------------------------------------------------- /src/tests/unit_tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/unit_tls.cpp -------------------------------------------------------------------------------- /src/tests/unit_x509.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randombit/botan/HEAD/src/tests/unit_x509.cpp --------------------------------------------------------------------------------