package/dropbear: bump version to 2025.87

Changelog: https://matt.ucc.asn.au/dropbear/CHANGES

Upstream disabled sha1 by default:
f3465a34eb

Add the options to DROPBEAR_ENABLE_LEGACY_CRYPTO hook.

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Reviewed-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit 05fb4526f9)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
This commit is contained in:
Bernd Kuhls
2025-03-09 09:32:16 +01:00
committed by Thomas Perale
parent 0e932eb6b5
commit fe75d7905d
2 changed files with 5 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
# From https://matt.ucc.asn.au/dropbear/releases/SHA256SUM.asc
sha256 e78936dffc395f2e0db099321d6be659190966b99712b55c530dd0a1822e0a5e dropbear-2024.86.tar.bz2
sha256 738b7f358547f0c64c3e1a56bbc5ef98d34d9ec6adf9ccdf01dc0bf2caa2bc8d dropbear-2025.87.tar.bz2
# License file, locally computed
sha256 a99ce657d790b761c132ee7e0de18edb437ae6361e536d991c6a12f36e770445 LICENSE

View File

@@ -4,7 +4,7 @@
#
################################################################################
DROPBEAR_VERSION = 2024.86
DROPBEAR_VERSION = 2025.87
DROPBEAR_SITE = https://matt.ucc.asn.au/dropbear/releases
DROPBEAR_SOURCE = dropbear-$(DROPBEAR_VERSION).tar.bz2
DROPBEAR_LICENSE = MIT, BSD-2-Clause, Public domain
@@ -69,6 +69,9 @@ define DROPBEAR_ENABLE_LEGACY_CRYPTO
echo '#define DROPBEAR_SHA1_96_HMAC 1' >> $(@D)/localoptions.h
echo '#define DROPBEAR_DH_GROUP1 1' >> $(@D)/localoptions.h
echo '#define DROPBEAR_DSS 1' >> $(@D)/localoptions.h
echo '#define DROPBEAR_SHA1_HMAC 1' >> $(@D)/localoptions.h
echo '#define DROPBEAR_RSA_SHA1 1' >> $(@D)/localoptions.h
echo '#define DROPBEAR_DH_GROUP14_SHA1 1' >> $(@D)/localoptions.h
endef
DROPBEAR_POST_EXTRACT_HOOKS += DROPBEAR_ENABLE_LEGACY_CRYPTO
endif