diff options
| author | Lena <lena@omega> | 2026-08-16 00:00:00 +0000 |
|---|---|---|
| committer | Lena <lena@omega> | 2026-08-16 00:00:00 +0000 |
| commit | beaa0c970d6c3538119b8a34a3f2f754b45e54cf (patch) | |
| tree | 0a4be0a63a5c5b40f3db66a7e2b6c603e60d8473 /versions | |
| parent | 0890d139e5fa501561e469aca7854791a936fcb6 (diff) | |
| download | rsend-beaa0c970d6c3538119b8a34a3f2f754b45e54cf.tar.gz | |
native: harden rsync and SSH transport
Update rsync to 3.5.0 and Go to 1.26.6. Bound SSH handshakes, pin
host-key types, and build 16 KB-aligned hardened executables.
Diffstat (limited to 'versions')
| -rw-r--r-- | versions | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -5,12 +5,14 @@ # Native rsync, built from source via the Android NDK. The tarball sha256 lives # in rsync/rsync-${RSYNC_VERSION}.tar.gz.sha256, which the build verifies. -RSYNC_VERSION=3.4.1 +RSYNC_VERSION=3.5.0 RSYNC_URL=https://download.samba.org/pub/rsync/src/rsync-${RSYNC_VERSION}.tar.gz -# Go SSH transport (rsh). Matches the go.mod go directive; x/crypto needs 1.25+. -GO_VERSION=1.25.0 -GO_SHA256=2852af0cb20a13139b3448992e69b868e50ed0f8a1e5940ee1de9e19a123b613 +# Go SSH transport (rsh). Matches the go.mod go directive. +GO_VERSION=1.26.6 +GO_SHA256=708effb774be8237570d0add163225abbdfaf4fca28b2611df167beba4feef89 +X_CRYPTO_VERSION=0.54.0 +X_SYS_VERSION=0.47.0 # Android toolchain. ANDROID_NDK is the sdkmanager package revision. # JDK_RELEASE is the exact Temurin GA build; JDK_VERSION its major. |