I Use This!
Moderate Activity

Commits : Listings

Analyzed about 3 hours ago. based on code collected about 3 hours ago.
Jan 10, 2025 — Jan 10, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Clear out some not-needed-anymore stuff related to Serf.
danielsahlberg
as Daniel Sahlberg
More... 1 day ago
Update checks for SERF 1.4.0 to check for SERF 1.5.0. There will never be a SERF 1.4.0 release and these APIs are officially available from 1.5.0 so it should not be a functional change but make things consistent.
danielsahlberg
as Daniel Sahlberg
More... 3 days ago
bcrypt: Use Win32 API directly when computing checksum without a context instead of creating a context on stack. It's more convenient and it feels wrong to use our "public" API with additional custom manipulations here. More... 6 days ago
bcrypt: Allocate buffer for checksum context object in a pool. More... 6 days ago
bcrypt: Eliminate heap allocations when computing checksum contextless of a single data block. Use forbidden alloca() function to create the buffer and pass it to the initialization function. According to the documentation [1]#pbHashObject, we should not call BCryptDestroyHash() if non-null buffer is supplied. More... 6 days ago
bcrypt: Follow-up to r1931082: Don't forget to cleanup context when resetting to prevent memory leak. More... 6 days ago
bcrypt: Rearrange parameters of bcrypt_ctx_t related methods so they always start with the algorithm state following with the context. More... 6 days ago
bcrypt: Initialize checksum context on demand with the first update to properly handle all potential errors. The context is considered uninitialized if the handle is NULL. More... 7 days ago
bcrypt: Factor-out bcrypt_ctx_reset() function. More... 7 days ago
bcrypt: Drop unused structure member. More... 7 days ago
checksum-test: Add test case to ensure that a context without any updates gives the exact same result when finalized as one with a dummy update that pushes zero-sized data. More... 7 days ago
Happy new year 2026! More... 10 days ago
Add checksum implementation based on BCrypt (which is a build-in cryptography provider on Windows). More... 10 days ago
Use separate definitions for each checksum backend enabled. More... 11 days ago
Bound checksum contexts of APR and OpenSSL into redeclared svn_checksum__md5_ctx_t and svn_checksum__sha1_ctx_t structures to prevent casting contexts. More... 11 days ago
Checksum finalizer accepts non-constant context in implementation backends, so remove 'const' modifier in those internal functions. More... 11 days ago
Fix a few formatting issues (follow-up to r1930949 and r1930927). More... 11 days ago
Fix test failures of JavaHL with Java 25 on Windows due to that deleting a file with readonly flag on Windows fails since Java 25. More... 12 days ago
Follow-up to r1930929: Typo-fix in comments. More... 13 days ago
Add OpenSSL backend for checksum computation. More... 13 days ago
Add test to benchmark performance of checksum computation. More... 13 days ago
Add internal APIs to compute checksums of an entire blocks of data with a default that simply wraps APR routines as it was before. Those new functions are now used to implement MD5 and SHA1 kinds in the svn_checksum() function. More... 13 days ago
Move the actual implementations of MD5 and SHA1 checksums into a separate file checksum_apr.c introducing new internal APIs. More... 13 days ago
Factor-out implementation of svn_checksum_ctx_t into a separate file. More... 13 days ago
Use actions/cache instead of removed x-gha cache feature for vcpkg built binaries caching. More... 13 days ago
In tools/dist/release.py, do not try to update the Buildbot config when creating a release branch. More... 15 days ago
* tools/dist/release.py (main): Fix typo in the comment. No functional change. More... 15 days ago
Fix using an invalid "wx" file mode in tools/dist/release.py. More... 15 days ago
Increment the trunk version number to 1.16, and introduce a new CHANGES section, following the creation of the 1.15.x release branch. More... 15 days ago
* tools/dist/release-lines.yaml: Declare build deps for 1.15 (same as 1.14). More... 15 days ago