All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH/next v2 1/1] package/dropbear: bump version to 2025.87
@ 2025-03-09  8:32 Bernd Kuhls
  2025-04-17  5:08 ` Baruch Siach via buildroot
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bernd Kuhls @ 2025-03-09  8:32 UTC (permalink / raw)
  To: buildroot

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

Upstream disabled sha1 by default:
https://github.com/mkj/dropbear/commit/f3465a34eb4007ca3e45044ebdf863842e0346d5

Add the options to DROPBEAR_ENABLE_LEGACY_CRYPTO hook.

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
v2: optionally enable sha1 (Baruch)

 package/dropbear/dropbear.hash | 2 +-
 package/dropbear/dropbear.mk   | 5 ++++-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/package/dropbear/dropbear.hash b/package/dropbear/dropbear.hash
index cf2dd18d61..777910da15 100644
--- a/package/dropbear/dropbear.hash
+++ b/package/dropbear/dropbear.hash
@@ -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
diff --git a/package/dropbear/dropbear.mk b/package/dropbear/dropbear.mk
index e043893aa1..b0f5dc7afe 100644
--- a/package/dropbear/dropbear.mk
+++ b/package/dropbear/dropbear.mk
@@ -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
-- 
2.39.5

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH/next v2 1/1] package/dropbear: bump version to 2025.87
  2025-03-09  8:32 [Buildroot] [PATCH/next v2 1/1] package/dropbear: bump version to 2025.87 Bernd Kuhls
@ 2025-04-17  5:08 ` Baruch Siach via buildroot
  2025-05-13  9:43 ` Peter Korsgaard
  2025-05-18 14:39 ` Arnout Vandecappelle via buildroot
  2 siblings, 0 replies; 4+ messages in thread
From: Baruch Siach via buildroot @ 2025-04-17  5:08 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: buildroot

Hi Bernd,

On Sun, Mar 09 2025, Bernd Kuhls wrote:
> Changelog: https://matt.ucc.asn.au/dropbear/CHANGES
>
> Upstream disabled sha1 by default:
> https://github.com/mkj/dropbear/commit/f3465a34eb4007ca3e45044ebdf863842e0346d5
>
> 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>

Thanks,
baruch

-- 
                                                     ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch@tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH/next v2 1/1] package/dropbear: bump version to 2025.87
  2025-03-09  8:32 [Buildroot] [PATCH/next v2 1/1] package/dropbear: bump version to 2025.87 Bernd Kuhls
  2025-04-17  5:08 ` Baruch Siach via buildroot
@ 2025-05-13  9:43 ` Peter Korsgaard
  2025-05-18 14:39 ` Arnout Vandecappelle via buildroot
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2025-05-13  9:43 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: buildroot

>>>>> "Bernd" == Bernd Kuhls <bernd@kuhls.net> writes:

 > Changelog: https://matt.ucc.asn.au/dropbear/CHANGES
 > Upstream disabled sha1 by default:
 > https://github.com/mkj/dropbear/commit/f3465a34eb4007ca3e45044ebdf863842e0346d5

 > Add the options to DROPBEAR_ENABLE_LEGACY_CRYPTO hook.

 > Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
 > ---
 > v2: optionally enable sha1 (Baruch)

Committed, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH/next v2 1/1] package/dropbear: bump version to 2025.87
  2025-03-09  8:32 [Buildroot] [PATCH/next v2 1/1] package/dropbear: bump version to 2025.87 Bernd Kuhls
  2025-04-17  5:08 ` Baruch Siach via buildroot
  2025-05-13  9:43 ` Peter Korsgaard
@ 2025-05-18 14:39 ` Arnout Vandecappelle via buildroot
  2 siblings, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2025-05-18 14:39 UTC (permalink / raw)
  To: Bernd Kuhls, buildroot



On 09/03/2025 09:32, Bernd Kuhls wrote:
> Changelog: https://matt.ucc.asn.au/dropbear/CHANGES
> 
> Upstream disabled sha1 by default:
> https://github.com/mkj/dropbear/commit/f3465a34eb4007ca3e45044ebdf863842e0346d5
> 
> Add the options to DROPBEAR_ENABLE_LEGACY_CRYPTO hook.
> 
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>

  Applied to 2025.02.x, thanks.

  Regards,
  Arnout

> ---
> v2: optionally enable sha1 (Baruch)
> 
>   package/dropbear/dropbear.hash | 2 +-
>   package/dropbear/dropbear.mk   | 5 ++++-
>   2 files changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/package/dropbear/dropbear.hash b/package/dropbear/dropbear.hash
> index cf2dd18d61..777910da15 100644
> --- a/package/dropbear/dropbear.hash
> +++ b/package/dropbear/dropbear.hash
> @@ -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
> diff --git a/package/dropbear/dropbear.mk b/package/dropbear/dropbear.mk
> index e043893aa1..b0f5dc7afe 100644
> --- a/package/dropbear/dropbear.mk
> +++ b/package/dropbear/dropbear.mk
> @@ -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

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-05-18 14:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-09  8:32 [Buildroot] [PATCH/next v2 1/1] package/dropbear: bump version to 2025.87 Bernd Kuhls
2025-04-17  5:08 ` Baruch Siach via buildroot
2025-05-13  9:43 ` Peter Korsgaard
2025-05-18 14:39 ` Arnout Vandecappelle via buildroot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.