uringmachine 0.24.0 → 0.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.gitmodules +0 -3
- data/CHANGELOG.md +13 -0
- data/Gemfile +11 -0
- data/README.md +266 -112
- data/Rakefile +8 -0
- data/TODO.md +14 -21
- data/benchmark/common.rb +2 -0
- data/benchmark/openssl.rb +77 -0
- data/benchmark/openssl_socketpair.rb +112 -0
- data/benchmark/sqlite.rb +1 -1
- data/docs/design/buffer_pool.md +1 -1
- data/docs/wroclove.rb.md +52 -0
- data/ext/um/extconf.rb +15 -0
- data/ext/um/um.c +392 -358
- data/ext/um/um.h +48 -23
- data/ext/um/um_async_op.c +9 -8
- data/ext/um/um_async_op_class.c +34 -3
- data/ext/um/um_class.c +705 -19
- data/ext/um/um_const.c +31 -0
- data/ext/um/um_mutex_class.c +12 -0
- data/ext/um/um_op.c +15 -1
- data/ext/um/um_queue_class.c +16 -0
- data/ext/um/um_ssl.c +109 -0
- data/ext/um/um_stream.c +9 -8
- data/ext/um/um_sync.c +18 -11
- data/ext/um/um_utils.c +17 -8
- data/grant-2025/interim-report.md +1 -1
- data/grant-2025/journal.md +4 -4
- data/grant-2025/tasks.md +6 -4
- data/lib/uringmachine/dns_resolver.rb +38 -0
- data/lib/uringmachine/fiber_scheduler.rb +7 -5
- data/lib/uringmachine/version.rb +1 -1
- data/lib/uringmachine.rb +106 -6
- data/test/helper.rb +15 -0
- data/test/test_async_op.rb +3 -2
- data/test/test_fiber_scheduler.rb +41 -1
- data/test/test_ssl.rb +85 -0
- data/test/test_stream.rb +11 -0
- data/test/test_um.rb +445 -11
- data/uringmachine.gemspec +1 -7
- data/vendor/liburing/examples/send-zerocopy.c +43 -31
- data/vendor/liburing/examples/zcrx.c +260 -69
- data/vendor/liburing/liburing.spec +1 -1
- data/vendor/liburing/src/include/liburing/io_uring.h +12 -0
- data/vendor/liburing/src/include/liburing.h +3 -2
- data/vendor/liburing/src/liburing-ffi.map +4 -0
- data/vendor/liburing/src/liburing.map +4 -0
- data/vendor/liburing/src/queue.c +12 -0
- data/vendor/liburing/src/register.c +1 -0
- data/vendor/liburing/src/setup.c +15 -7
- data/vendor/liburing/test/Makefile +8 -4
- data/vendor/liburing/test/conn-unreach.c +1 -1
- data/vendor/liburing/test/epwait.c +32 -6
- data/vendor/liburing/test/io-wq-exit.c +131 -0
- data/vendor/liburing/test/iowait.c +1 -1
- data/vendor/liburing/test/min-timeout.c +3 -1
- data/vendor/liburing/test/open-close.c +39 -0
- data/vendor/liburing/test/poll-update-trigger.c +85 -0
- data/vendor/liburing/test/recvsend_bundle.c +14 -11
- data/vendor/liburing/test/sendzc-bug.c +146 -0
- data/vendor/liburing/test/sqe-mixed-nop.c +151 -7
- data/vendor/liburing/test/test.h +2 -0
- data/vendor/liburing/test/timestamp-bug.c +135 -0
- data/vendor/liburing/test/timestamp.c +5 -0
- data/vendor/liburing/test/vec-regbuf.c +136 -1
- metadata +38 -283
- data/vendor/libressl/.github/scripts/changelog.sh +0 -74
- data/vendor/libressl/.github/workflows/android.yml +0 -35
- data/vendor/libressl/.github/workflows/cifuzz.yml +0 -33
- data/vendor/libressl/.github/workflows/cmake-config.yml +0 -98
- data/vendor/libressl/.github/workflows/coverity.yml +0 -69
- data/vendor/libressl/.github/workflows/emscripten.yml +0 -71
- data/vendor/libressl/.github/workflows/fedora-rawhide.yml +0 -39
- data/vendor/libressl/.github/workflows/freebsd.yml +0 -71
- data/vendor/libressl/.github/workflows/linux.yml +0 -71
- data/vendor/libressl/.github/workflows/macos.yml +0 -37
- data/vendor/libressl/.github/workflows/release.yml +0 -81
- data/vendor/libressl/.github/workflows/rust-openssl.yml +0 -47
- data/vendor/libressl/.github/workflows/solaris.yml +0 -37
- data/vendor/libressl/.github/workflows/windows.yml +0 -70
- data/vendor/libressl/.gitignore +0 -333
- data/vendor/libressl/CMakeLists.txt +0 -581
- data/vendor/libressl/COPYING +0 -133
- data/vendor/libressl/ChangeLog +0 -3280
- data/vendor/libressl/FindLibreSSL.cmake +0 -232
- data/vendor/libressl/LibreSSLConfig.cmake.in +0 -36
- data/vendor/libressl/Makefile.am +0 -60
- data/vendor/libressl/Makefile.am.common +0 -20
- data/vendor/libressl/OPENBSD_BRANCH +0 -1
- data/vendor/libressl/README.md +0 -238
- data/vendor/libressl/README.mingw.md +0 -43
- data/vendor/libressl/apps/CMakeLists.txt +0 -18
- data/vendor/libressl/apps/Makefile.am +0 -5
- data/vendor/libressl/apps/nc/CMakeLists.txt +0 -67
- data/vendor/libressl/apps/nc/Makefile.am +0 -64
- data/vendor/libressl/apps/nc/compat/accept4.c +0 -17
- data/vendor/libressl/apps/nc/compat/readpassphrase.c +0 -205
- data/vendor/libressl/apps/nc/compat/socket.c +0 -29
- data/vendor/libressl/apps/nc/compat/sys/socket.h +0 -30
- data/vendor/libressl/apps/ocspcheck/CMakeLists.txt +0 -44
- data/vendor/libressl/apps/ocspcheck/Makefile.am +0 -45
- data/vendor/libressl/apps/ocspcheck/compat/.gitignore +0 -0
- data/vendor/libressl/apps/openssl/CMakeLists.txt +0 -97
- data/vendor/libressl/apps/openssl/Makefile.am +0 -108
- data/vendor/libressl/apps/openssl/apps_win.c +0 -138
- data/vendor/libressl/apps/openssl/certhash_win.c +0 -13
- data/vendor/libressl/apps/openssl/compat/clock_gettime_osx.c +0 -26
- data/vendor/libressl/apps/openssl/compat/poll_win.c +0 -329
- data/vendor/libressl/appveyor.yml +0 -53
- data/vendor/libressl/autogen.sh +0 -15
- data/vendor/libressl/check-release.sh +0 -86
- data/vendor/libressl/cmake_export_symbol.cmake +0 -71
- data/vendor/libressl/cmake_uninstall.cmake.in +0 -36
- data/vendor/libressl/config +0 -17
- data/vendor/libressl/configure.ac +0 -165
- data/vendor/libressl/crypto/CMakeLists.txt +0 -863
- data/vendor/libressl/crypto/Makefile.am +0 -962
- data/vendor/libressl/crypto/Makefile.am.arc4random +0 -46
- data/vendor/libressl/crypto/Makefile.am.elf-mips +0 -14
- data/vendor/libressl/crypto/Makefile.am.elf-mips64 +0 -14
- data/vendor/libressl/crypto/Makefile.am.elf-x86_64 +0 -35
- data/vendor/libressl/crypto/Makefile.am.macosx-x86_64 +0 -35
- data/vendor/libressl/crypto/Makefile.am.masm-x86_64 +0 -22
- data/vendor/libressl/crypto/Makefile.am.mingw64-x86_64 +0 -23
- data/vendor/libressl/crypto/arch/aarch64/crypto_cpu_caps_darwin.c +0 -60
- data/vendor/libressl/crypto/arch/aarch64/crypto_cpu_caps_linux.c +0 -62
- data/vendor/libressl/crypto/arch/aarch64/crypto_cpu_caps_none.c +0 -26
- data/vendor/libressl/crypto/arch/aarch64/crypto_cpu_caps_windows.c +0 -36
- data/vendor/libressl/crypto/arch/loongarch64/crypto_arch.h +0 -21
- data/vendor/libressl/crypto/arch/mips/crypto_arch.h +0 -21
- data/vendor/libressl/crypto/bn/arch/loongarch64/bn_arch.h +0 -23
- data/vendor/libressl/crypto/bn/arch/mips/bn_arch.h +0 -24
- data/vendor/libressl/crypto/compat/.gitignore +0 -31
- data/vendor/libressl/crypto/compat/arc4random.h +0 -41
- data/vendor/libressl/crypto/compat/b_win.c +0 -55
- data/vendor/libressl/crypto/compat/bsd-asprintf.c +0 -96
- data/vendor/libressl/crypto/compat/crypto_lock_win.c +0 -56
- data/vendor/libressl/crypto/compat/explicit_bzero_win.c +0 -13
- data/vendor/libressl/crypto/compat/freezero.c +0 -32
- data/vendor/libressl/crypto/compat/getdelim.c +0 -78
- data/vendor/libressl/crypto/compat/getline.c +0 -40
- data/vendor/libressl/crypto/compat/getopt_long.c +0 -528
- data/vendor/libressl/crypto/compat/getpagesize.c +0 -18
- data/vendor/libressl/crypto/compat/getprogname_linux.c +0 -23
- data/vendor/libressl/crypto/compat/getprogname_unimpl.c +0 -7
- data/vendor/libressl/crypto/compat/getprogname_windows.c +0 -13
- data/vendor/libressl/crypto/compat/posix_win.c +0 -296
- data/vendor/libressl/crypto/compat/syslog_r.c +0 -19
- data/vendor/libressl/crypto/compat/ui_openssl_win.c +0 -334
- data/vendor/libressl/dist.sh +0 -22
- data/vendor/libressl/gen-coverage-report.sh +0 -58
- data/vendor/libressl/gen-openbsd-tags.sh +0 -20
- data/vendor/libressl/include/CMakeLists.txt +0 -61
- data/vendor/libressl/include/Makefile.am +0 -79
- data/vendor/libressl/include/arch/loongarch64/opensslconf.h +0 -150
- data/vendor/libressl/include/arch/mips/opensslconf.h +0 -150
- data/vendor/libressl/include/compat/arpa/inet.h +0 -15
- data/vendor/libressl/include/compat/arpa/nameser.h +0 -25
- data/vendor/libressl/include/compat/cet.h +0 -19
- data/vendor/libressl/include/compat/dirent.h +0 -17
- data/vendor/libressl/include/compat/dirent_msvc.h +0 -611
- data/vendor/libressl/include/compat/endian.h +0 -161
- data/vendor/libressl/include/compat/err.h +0 -95
- data/vendor/libressl/include/compat/fcntl.h +0 -32
- data/vendor/libressl/include/compat/getopt.h +0 -50
- data/vendor/libressl/include/compat/limits.h +0 -25
- data/vendor/libressl/include/compat/netdb.h +0 -10
- data/vendor/libressl/include/compat/netinet/in.h +0 -19
- data/vendor/libressl/include/compat/netinet/ip.h +0 -49
- data/vendor/libressl/include/compat/netinet/tcp.h +0 -10
- data/vendor/libressl/include/compat/poll.h +0 -63
- data/vendor/libressl/include/compat/pthread.h +0 -122
- data/vendor/libressl/include/compat/readpassphrase.h +0 -44
- data/vendor/libressl/include/compat/resolv.h +0 -24
- data/vendor/libressl/include/compat/stdint.h +0 -31
- data/vendor/libressl/include/compat/stdio.h +0 -65
- data/vendor/libressl/include/compat/stdlib.h +0 -57
- data/vendor/libressl/include/compat/string.h +0 -98
- data/vendor/libressl/include/compat/sys/_null.h +0 -18
- data/vendor/libressl/include/compat/sys/ioctl.h +0 -11
- data/vendor/libressl/include/compat/sys/mman.h +0 -19
- data/vendor/libressl/include/compat/sys/param.h +0 -15
- data/vendor/libressl/include/compat/sys/queue.h +0 -536
- data/vendor/libressl/include/compat/sys/select.h +0 -10
- data/vendor/libressl/include/compat/sys/socket.h +0 -18
- data/vendor/libressl/include/compat/sys/stat.h +0 -129
- data/vendor/libressl/include/compat/sys/time.h +0 -37
- data/vendor/libressl/include/compat/sys/tree.h +0 -1006
- data/vendor/libressl/include/compat/sys/types.h +0 -69
- data/vendor/libressl/include/compat/sys/uio.h +0 -17
- data/vendor/libressl/include/compat/syslog.h +0 -38
- data/vendor/libressl/include/compat/time.h +0 -59
- data/vendor/libressl/include/compat/unistd.h +0 -83
- data/vendor/libressl/include/compat/win32netcompat.h +0 -57
- data/vendor/libressl/include/openssl/Makefile.am.tpl +0 -45
- data/vendor/libressl/libcrypto.pc.in +0 -28
- data/vendor/libressl/libressl.pub +0 -2
- data/vendor/libressl/libssl.pc.in +0 -28
- data/vendor/libressl/libtls.pc.in +0 -28
- data/vendor/libressl/m4/ax_add_fortify_source.m4 +0 -80
- data/vendor/libressl/m4/ax_check_compile_flag.m4 +0 -53
- data/vendor/libressl/m4/check-hardening-options.m4 +0 -110
- data/vendor/libressl/m4/check-libc.m4 +0 -189
- data/vendor/libressl/m4/check-os-options.m4 +0 -181
- data/vendor/libressl/m4/disable-compiler-warnings.m4 +0 -44
- data/vendor/libressl/man/CMakeLists.txt +0 -26
- data/vendor/libressl/man/links +0 -2780
- data/vendor/libressl/man/update_links.sh +0 -25
- data/vendor/libressl/openssl.pc.in +0 -11
- data/vendor/libressl/patches/bn_shift.patch +0 -34
- data/vendor/libressl/patches/crypto_arch.h.patch +0 -34
- data/vendor/libressl/patches/crypto_namespace.h.patch +0 -22
- data/vendor/libressl/patches/netcat.c.patch +0 -178
- data/vendor/libressl/patches/openssl.c.patch +0 -12
- data/vendor/libressl/patches/opensslfeatures.h.patch +0 -49
- data/vendor/libressl/patches/patch-amd64-crypto-cpu-caps.c.patch +0 -20
- data/vendor/libressl/patches/patch-i386-crypto-cpu-caps.c.patch +0 -20
- data/vendor/libressl/patches/speed.c.patch +0 -114
- data/vendor/libressl/patches/ssl_namespace.h.patch +0 -21
- data/vendor/libressl/patches/tls.h.patch +0 -16
- data/vendor/libressl/patches/tls_config.c.patch +0 -15
- data/vendor/libressl/patches/win32_amd64_bn_arch.h.patch +0 -28
- data/vendor/libressl/patches/windows_headers.patch +0 -80
- data/vendor/libressl/scripts/config.guess +0 -1774
- data/vendor/libressl/scripts/config.sub +0 -1907
- data/vendor/libressl/scripts/i686-w64-mingw32.cmake +0 -9
- data/vendor/libressl/scripts/test +0 -210
- data/vendor/libressl/scripts/wrap-compiler-for-flag-check +0 -31
- data/vendor/libressl/scripts/x86_64-w64-mingw32.cmake +0 -9
- data/vendor/libressl/ssl/CMakeLists.txt +0 -183
- data/vendor/libressl/ssl/Makefile.am +0 -187
- data/vendor/libressl/tests/CMakeLists.txt +0 -970
- data/vendor/libressl/tests/Makefile.am +0 -944
- data/vendor/libressl/tests/aeadtest.sh +0 -30
- data/vendor/libressl/tests/arc4randomforktest.sh +0 -21
- data/vendor/libressl/tests/asn1time_small.test +0 -10
- data/vendor/libressl/tests/cmake/CMakeLists.txt +0 -52
- data/vendor/libressl/tests/cmake/crypto.c +0 -7
- data/vendor/libressl/tests/cmake/ssl.c +0 -6
- data/vendor/libressl/tests/cmake/tls.c +0 -6
- data/vendor/libressl/tests/compat/pipe2.c +0 -186
- data/vendor/libressl/tests/dtlstest.sh +0 -28
- data/vendor/libressl/tests/evptest.sh +0 -22
- data/vendor/libressl/tests/keypairtest.sh +0 -27
- data/vendor/libressl/tests/mlkem_tests.sh +0 -39
- data/vendor/libressl/tests/ocsptest.bat +0 -25
- data/vendor/libressl/tests/ocsptest.sh +0 -23
- data/vendor/libressl/tests/openssl.cnf +0 -29
- data/vendor/libressl/tests/optionstest.c +0 -381
- data/vendor/libressl/tests/pidwraptest.c +0 -85
- data/vendor/libressl/tests/pidwraptest.sh +0 -26
- data/vendor/libressl/tests/quictest.bat +0 -27
- data/vendor/libressl/tests/quictest.sh +0 -30
- data/vendor/libressl/tests/renegotiation_test.bat +0 -27
- data/vendor/libressl/tests/renegotiation_test.sh +0 -30
- data/vendor/libressl/tests/rfc5280time_small.test +0 -10
- data/vendor/libressl/tests/servertest.bat +0 -27
- data/vendor/libressl/tests/servertest.sh +0 -30
- data/vendor/libressl/tests/shutdowntest.bat +0 -27
- data/vendor/libressl/tests/shutdowntest.sh +0 -30
- data/vendor/libressl/tests/ssltest.bat +0 -32
- data/vendor/libressl/tests/ssltest.sh +0 -48
- data/vendor/libressl/tests/testdsa.bat +0 -47
- data/vendor/libressl/tests/testdsa.sh +0 -57
- data/vendor/libressl/tests/testenc.bat +0 -85
- data/vendor/libressl/tests/testenc.sh +0 -93
- data/vendor/libressl/tests/testrsa.bat +0 -47
- data/vendor/libressl/tests/testrsa.sh +0 -57
- data/vendor/libressl/tests/testssl.bat +0 -171
- data/vendor/libressl/tests/tlstest.bat +0 -27
- data/vendor/libressl/tests/tlstest.sh +0 -28
- data/vendor/libressl/tls/CMakeLists.txt +0 -125
- data/vendor/libressl/tls/Makefile.am +0 -76
- data/vendor/libressl/tls/compat/ftruncate.c +0 -17
- data/vendor/libressl/tls/compat/pread.c +0 -29
- data/vendor/libressl/tls/compat/pwrite.c +0 -29
- data/vendor/libressl/update.sh +0 -460
data/vendor/libressl/.gitignore
DELETED
|
@@ -1,333 +0,0 @@
|
|
|
1
|
-
### These files should get ignored no matter where they appear.
|
|
2
|
-
|
|
3
|
-
# Editors leave these lying around
|
|
4
|
-
\#*\#
|
|
5
|
-
.#*
|
|
6
|
-
*~
|
|
7
|
-
*.swp
|
|
8
|
-
|
|
9
|
-
# C stuff
|
|
10
|
-
*.o
|
|
11
|
-
|
|
12
|
-
# Assembly stuff
|
|
13
|
-
*.S
|
|
14
|
-
*.s
|
|
15
|
-
|
|
16
|
-
# Windows stuff
|
|
17
|
-
*.obj
|
|
18
|
-
*.exe
|
|
19
|
-
*.lib
|
|
20
|
-
|
|
21
|
-
# Patch leaves these lying arround
|
|
22
|
-
*.orig
|
|
23
|
-
*.rej
|
|
24
|
-
|
|
25
|
-
# gcov stuff
|
|
26
|
-
*.gcno
|
|
27
|
-
*.gcov
|
|
28
|
-
*.gcda
|
|
29
|
-
|
|
30
|
-
# mandoc stuff
|
|
31
|
-
links
|
|
32
|
-
mandoc.db
|
|
33
|
-
|
|
34
|
-
# Autotools stuff
|
|
35
|
-
.deps
|
|
36
|
-
.dirstamp
|
|
37
|
-
Makefile
|
|
38
|
-
Makefile.in
|
|
39
|
-
|
|
40
|
-
# CMake stuff
|
|
41
|
-
build*
|
|
42
|
-
cmake-build-debug/
|
|
43
|
-
|
|
44
|
-
# Libtool stuff
|
|
45
|
-
.libs
|
|
46
|
-
*.lo
|
|
47
|
-
*.la
|
|
48
|
-
|
|
49
|
-
*.def
|
|
50
|
-
*.sym
|
|
51
|
-
*.pc
|
|
52
|
-
|
|
53
|
-
# man pages
|
|
54
|
-
*.1
|
|
55
|
-
*.3
|
|
56
|
-
*.5
|
|
57
|
-
|
|
58
|
-
cert.pem
|
|
59
|
-
openssl.cnf
|
|
60
|
-
x509v3.cnf
|
|
61
|
-
|
|
62
|
-
# tests
|
|
63
|
-
tap-driver.sh
|
|
64
|
-
test-driver
|
|
65
|
-
*.log
|
|
66
|
-
*.trs
|
|
67
|
-
tests/*.crl
|
|
68
|
-
tests/aes_wrap*
|
|
69
|
-
tests/arc4random_fork*
|
|
70
|
-
tests/asn1api*
|
|
71
|
-
tests/asn1basic*
|
|
72
|
-
tests/asn1complex*
|
|
73
|
-
tests/asn1evp*
|
|
74
|
-
tests/asn1object*
|
|
75
|
-
tests/asn1oct*
|
|
76
|
-
tests/asn1string_copy*
|
|
77
|
-
tests/asn1_string_to_utf8*
|
|
78
|
-
tests/asn1time*
|
|
79
|
-
tests/asn1x509*
|
|
80
|
-
tests/bio_asn1*
|
|
81
|
-
tests/bio_chain*
|
|
82
|
-
tests/bio_dump*
|
|
83
|
-
tests/bio_host*
|
|
84
|
-
tests/bio_mem*
|
|
85
|
-
tests/bnaddsub*
|
|
86
|
-
tests/bn_add_sub*
|
|
87
|
-
tests/bn_bits*
|
|
88
|
-
tests/bn_cmp*
|
|
89
|
-
tests/bn_convert*
|
|
90
|
-
tests/bn_gcd*
|
|
91
|
-
tests/bn_isqrt*
|
|
92
|
-
tests/bn_mod_exp*
|
|
93
|
-
tests/bn_mod_exp_zero*
|
|
94
|
-
tests/bn_mod_exp2_mont*
|
|
95
|
-
tests/bn_mod_inverse*
|
|
96
|
-
tests/bn_mod_sqrt*
|
|
97
|
-
tests/bn_mont*
|
|
98
|
-
tests/bn_primes*
|
|
99
|
-
tests/bn_print*
|
|
100
|
-
tests/bn_rand_interval*
|
|
101
|
-
tests/bn_shift*
|
|
102
|
-
tests/bn_to_string*
|
|
103
|
-
tests/bn_unit*
|
|
104
|
-
tests/bn_word*
|
|
105
|
-
tests/callback*
|
|
106
|
-
tests/cipher*
|
|
107
|
-
tests/constraints*
|
|
108
|
-
tests/crypto_test*
|
|
109
|
-
tests/ctlog.conf
|
|
110
|
-
tests/*.crt
|
|
111
|
-
tests/ec_point_conversion*
|
|
112
|
-
tests/ecc_cdh*
|
|
113
|
-
tests/evp_pkey_cleanup*
|
|
114
|
-
tests/explicit_bzero*
|
|
115
|
-
tests/freenull*
|
|
116
|
-
tests/gost2814789t*
|
|
117
|
-
tests/key_schedule*
|
|
118
|
-
tests/lhash_test*
|
|
119
|
-
tests/mlkem*
|
|
120
|
-
tests/mont*
|
|
121
|
-
tests/parse*
|
|
122
|
-
tests/policy*
|
|
123
|
-
tests/renegotiation_test*
|
|
124
|
-
tests/rfc3779*
|
|
125
|
-
tests/rfc5280time*
|
|
126
|
-
tests/ssl_get_shared_ciphers*
|
|
127
|
-
tests/ssl_methods*
|
|
128
|
-
tests/ssl_set_alpn_protos*
|
|
129
|
-
tests/ssl_verify_param*
|
|
130
|
-
tests/ssl_versions*
|
|
131
|
-
tests/timingsafe*
|
|
132
|
-
tests/tls_ext_alpn*
|
|
133
|
-
tests/tls_prf*
|
|
134
|
-
tests/*test
|
|
135
|
-
tests/tests.h
|
|
136
|
-
tests/test.h
|
|
137
|
-
tests/*test.c
|
|
138
|
-
tests/pbkdf2*
|
|
139
|
-
tests/*.pem
|
|
140
|
-
tests/testssl
|
|
141
|
-
tests/*.txt
|
|
142
|
-
tests/compat/*.c
|
|
143
|
-
tests/verify*
|
|
144
|
-
tests/x509_algor*
|
|
145
|
-
tests/x509_asn1*
|
|
146
|
-
tests/x509_extensions_test*
|
|
147
|
-
tests/x509_info*
|
|
148
|
-
tests/x509_name_test*
|
|
149
|
-
tests/x509attribute*
|
|
150
|
-
tests/x509name*
|
|
151
|
-
tests/x509req_ext*
|
|
152
|
-
!tests/optionstest.c
|
|
153
|
-
!tests/*.test
|
|
154
|
-
tests/client.c
|
|
155
|
-
tests/init_pledge.c
|
|
156
|
-
tests/server.c
|
|
157
|
-
tests/*util.c
|
|
158
|
-
tests/valid_handshakes_terminate*
|
|
159
|
-
tests/handshake_table*
|
|
160
|
-
|
|
161
|
-
# benchmarks, tests with external dependencies
|
|
162
|
-
tests/bn_general*
|
|
163
|
-
tests/bn_mul_div*
|
|
164
|
-
tests/expirecallback*
|
|
165
|
-
tests/wycheproof-primes*
|
|
166
|
-
|
|
167
|
-
# update.sh creates this for some reason
|
|
168
|
-
tests/empty.c
|
|
169
|
-
|
|
170
|
-
# ctags stuff
|
|
171
|
-
TAGS
|
|
172
|
-
|
|
173
|
-
autom4te.cache
|
|
174
|
-
|
|
175
|
-
# Libtool adds these, at least sometimes
|
|
176
|
-
INSTALL
|
|
177
|
-
!m4/check*.m4
|
|
178
|
-
m4/l*
|
|
179
|
-
|
|
180
|
-
aclocal.m4
|
|
181
|
-
compile
|
|
182
|
-
doxygen
|
|
183
|
-
config.guess
|
|
184
|
-
config.log
|
|
185
|
-
config.status
|
|
186
|
-
config.sub
|
|
187
|
-
configure
|
|
188
|
-
depcomp
|
|
189
|
-
config.h
|
|
190
|
-
config.h.in
|
|
191
|
-
install-sh
|
|
192
|
-
libtool
|
|
193
|
-
ltmain.sh
|
|
194
|
-
missing
|
|
195
|
-
stamp-h1
|
|
196
|
-
stamp-h2
|
|
197
|
-
|
|
198
|
-
include/openssl/Makefile.am
|
|
199
|
-
include/arch
|
|
200
|
-
|
|
201
|
-
VERSION
|
|
202
|
-
crypto/VERSION
|
|
203
|
-
ssl/VERSION
|
|
204
|
-
tls/VERSION
|
|
205
|
-
libtls-standalone/VERSION
|
|
206
|
-
|
|
207
|
-
crypto/*.mk
|
|
208
|
-
ssl/hidden
|
|
209
|
-
ssl/*.c
|
|
210
|
-
ssl/*.h
|
|
211
|
-
ssl/*.mk
|
|
212
|
-
tls/*.c
|
|
213
|
-
tls/*.h
|
|
214
|
-
tls/*.mk
|
|
215
|
-
include/pqueue.h
|
|
216
|
-
include/tls.h
|
|
217
|
-
include/openssl/*.h
|
|
218
|
-
|
|
219
|
-
/apps/ocspcheck/*.h
|
|
220
|
-
/apps/ocspcheck/*.c
|
|
221
|
-
/apps/ocspcheck/ocspcheck*
|
|
222
|
-
/apps/ocspcheck/compat/memmem.c
|
|
223
|
-
/apps/ocspcheck/compat/inet_ntop.c
|
|
224
|
-
/apps/ocspcheck/compat/strtonum.c
|
|
225
|
-
|
|
226
|
-
/apps/nc/*.h
|
|
227
|
-
/apps/nc/*.c
|
|
228
|
-
/apps/nc/nc*
|
|
229
|
-
!/apps/nc/readpassphrase.c
|
|
230
|
-
/apps/nc/compat/*.c
|
|
231
|
-
|
|
232
|
-
/apps/openssl/*.h
|
|
233
|
-
/apps/openssl/*.c
|
|
234
|
-
/apps/openssl/*.cnf
|
|
235
|
-
/apps/openssl/*.pem
|
|
236
|
-
/apps/openssl/openssl
|
|
237
|
-
/apps/openssl/compat/strtonum.c
|
|
238
|
-
!/apps/openssl/apps_win.c
|
|
239
|
-
!/apps/openssl/certhash_win.c
|
|
240
|
-
|
|
241
|
-
/crypto/*.c
|
|
242
|
-
/crypto/*.h
|
|
243
|
-
/crypto/aes/
|
|
244
|
-
/crypto/arch/aarch64/crypto_arch.h
|
|
245
|
-
/crypto/arch/aarch64/crypto_cpu_caps.c
|
|
246
|
-
/crypto/arch/alpha/
|
|
247
|
-
/crypto/arch/amd64/
|
|
248
|
-
/crypto/arch/arm/
|
|
249
|
-
/crypto/arch/hppa/
|
|
250
|
-
/crypto/arch/i386/
|
|
251
|
-
/crypto/arch/m88k/
|
|
252
|
-
/crypto/arch/mips64/
|
|
253
|
-
/crypto/arch/powerpc/
|
|
254
|
-
/crypto/arch/powerpc64/
|
|
255
|
-
/crypto/arch/riscv64/
|
|
256
|
-
/crypto/arch/sh/
|
|
257
|
-
/crypto/arch/sparc64/
|
|
258
|
-
/crypto/asn1/
|
|
259
|
-
/crypto/bf/
|
|
260
|
-
/crypto/bio/
|
|
261
|
-
/crypto/bn/*.c
|
|
262
|
-
/crypto/bn/*.h
|
|
263
|
-
/crypto/bn/arch/aarch64/
|
|
264
|
-
/crypto/bn/arch/alpha/
|
|
265
|
-
/crypto/bn/arch/amd64/
|
|
266
|
-
/crypto/bn/arch/arm/
|
|
267
|
-
/crypto/bn/arch/hppa/
|
|
268
|
-
/crypto/bn/arch/i386/
|
|
269
|
-
/crypto/bn/arch/m88k/
|
|
270
|
-
/crypto/bn/arch/mips64/
|
|
271
|
-
/crypto/bn/arch/powerpc/
|
|
272
|
-
/crypto/bn/arch/powerpc64/
|
|
273
|
-
/crypto/bn/arch/riscv64/
|
|
274
|
-
/crypto/bn/arch/sh/
|
|
275
|
-
/crypto/bn/arch/sparc64/
|
|
276
|
-
/crypto/buffer/
|
|
277
|
-
/crypto/bytestring/
|
|
278
|
-
/crypto/camellia/
|
|
279
|
-
/crypto/cast/
|
|
280
|
-
/crypto/chacha/
|
|
281
|
-
/crypto/cmac/
|
|
282
|
-
/crypto/cms/
|
|
283
|
-
/crypto/conf/
|
|
284
|
-
/crypto/ct/
|
|
285
|
-
/crypto/curve25519/
|
|
286
|
-
/crypto/des/
|
|
287
|
-
/crypto/dh/
|
|
288
|
-
/crypto/dsa/
|
|
289
|
-
/crypto/ec/
|
|
290
|
-
/crypto/ecdh/
|
|
291
|
-
/crypto/ecdsa/
|
|
292
|
-
/crypto/engine/
|
|
293
|
-
/crypto/err/
|
|
294
|
-
/crypto/evp/
|
|
295
|
-
/crypto/hidden/
|
|
296
|
-
/crypto/hkdf/
|
|
297
|
-
/crypto/hmac/
|
|
298
|
-
/crypto/idea/
|
|
299
|
-
/crypto/kdf/
|
|
300
|
-
/crypto/lhash/
|
|
301
|
-
/crypto/md4/
|
|
302
|
-
/crypto/md5/
|
|
303
|
-
/crypto/mlkem/
|
|
304
|
-
/crypto/modes/
|
|
305
|
-
/crypto/objects/
|
|
306
|
-
/crypto/ocsp/
|
|
307
|
-
/crypto/pem/
|
|
308
|
-
/crypto/pkcs12/
|
|
309
|
-
/crypto/pkcs7/
|
|
310
|
-
/crypto/poly1305/
|
|
311
|
-
/crypto/rand/
|
|
312
|
-
/crypto/rc2/
|
|
313
|
-
/crypto/rc4/
|
|
314
|
-
/crypto/ripemd/
|
|
315
|
-
/crypto/rsa/
|
|
316
|
-
/crypto/sha/
|
|
317
|
-
/crypto/sm3/
|
|
318
|
-
/crypto/sm4/
|
|
319
|
-
/crypto/stack/
|
|
320
|
-
/crypto/ts/
|
|
321
|
-
/crypto/txt_db/
|
|
322
|
-
/crypto/ui/
|
|
323
|
-
/crypto/x509/
|
|
324
|
-
|
|
325
|
-
openbsd/
|
|
326
|
-
|
|
327
|
-
*.tar.gz
|
|
328
|
-
man/Makefile.am
|
|
329
|
-
man/mandoc.db
|
|
330
|
-
|
|
331
|
-
# JetBrains IDEs
|
|
332
|
-
.idea/
|
|
333
|
-
*.iml
|