All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH/next 0/2] Enable more openssl features for hostapd/wpa_supplicant
@ 2021-05-26 19:56 Sergey Matyukevich
  2021-05-26 19:56 ` [Buildroot] [PATCH/next 1/2] package/wpa_supplicant: enable DES in openssl Sergey Matyukevich
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Sergey Matyukevich @ 2021-05-26 19:56 UTC (permalink / raw)
  To: buildroot

Hi all,

One more openssl crypto feature needs to be enabled for hostapd
and wpa_supplicant. Last time it was MD4, now it is DES.

Regards,
Sergey

Sergey Matyukevich (2):
  package/wpa_supplicant: enable DES in openssl
  package/hostapd: enable DES in openssl

 package/hostapd/Config.in        | 1 +
 package/wpa_supplicant/Config.in | 1 +
 2 files changed, 2 insertions(+)

-- 
2.31.1

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

* [Buildroot] [PATCH/next 1/2] package/wpa_supplicant: enable DES in openssl
  2021-05-26 19:56 [Buildroot] [PATCH/next 0/2] Enable more openssl features for hostapd/wpa_supplicant Sergey Matyukevich
@ 2021-05-26 19:56 ` Sergey Matyukevich
  2021-05-26 19:56 ` [Buildroot] [PATCH/next 2/2] package/hostapd: " Sergey Matyukevich
  2021-05-26 21:43 ` [Buildroot] [PATCH/next 0/2] Enable more openssl features for hostapd/wpa_supplicant Yann E. MORIN
  2 siblings, 0 replies; 4+ messages in thread
From: Sergey Matyukevich @ 2021-05-26 19:56 UTC (permalink / raw)
  To: buildroot

Hostapd/wpa_supplicant crypto backend assumes that openssl always
provides DES support. However DES support in openssl has become
optional since  commit a83d41867c8d ("package/libopenssl: add
option to enable some features").

Select openssl DES support in wpa_supplicant Kconfig to avoid
build failures.

Fixes:
http://autobuild.buildroot.net/results/00d46eb765f23a1f6e168338f2cc863ae348045d/

Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
---
 package/wpa_supplicant/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/wpa_supplicant/Config.in b/package/wpa_supplicant/Config.in
index 67117c141b..bc9847c99f 100644
--- a/package/wpa_supplicant/Config.in
+++ b/package/wpa_supplicant/Config.in
@@ -2,6 +2,7 @@ menuconfig BR2_PACKAGE_WPA_SUPPLICANT
 	bool "wpa_supplicant"
 	depends on BR2_USE_MMU # fork()
 	select BR2_PACKAGE_LIBOPENSSL_ENABLE_MD4 if BR2_PACKAGE_LIBOPENSSL
+	select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
 	help
 	  WPA supplicant for secure wireless networks
 
-- 
2.31.1

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

* [Buildroot] [PATCH/next 2/2] package/hostapd: enable DES in openssl
  2021-05-26 19:56 [Buildroot] [PATCH/next 0/2] Enable more openssl features for hostapd/wpa_supplicant Sergey Matyukevich
  2021-05-26 19:56 ` [Buildroot] [PATCH/next 1/2] package/wpa_supplicant: enable DES in openssl Sergey Matyukevich
@ 2021-05-26 19:56 ` Sergey Matyukevich
  2021-05-26 21:43 ` [Buildroot] [PATCH/next 0/2] Enable more openssl features for hostapd/wpa_supplicant Yann E. MORIN
  2 siblings, 0 replies; 4+ messages in thread
From: Sergey Matyukevich @ 2021-05-26 19:56 UTC (permalink / raw)
  To: buildroot

Hostapd/wpa_supplicant crypto backend assumes that openssl always
provides DES support. However DES support in openssl has become
optional since  commit a83d41867c8d ("package/libopenssl: add
option to enable some features").

Select openssl DES support in hostapd Kconfig to avoid
build failures.

Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
---
 package/hostapd/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/hostapd/Config.in b/package/hostapd/Config.in
index 1ac7f6cd5a..9d5e8692a2 100644
--- a/package/hostapd/Config.in
+++ b/package/hostapd/Config.in
@@ -2,6 +2,7 @@ config BR2_PACKAGE_HOSTAPD
 	bool "hostapd"
 	depends on BR2_USE_MMU # fork()
 	select BR2_PACKAGE_LIBOPENSSL_ENABLE_MD4 if BR2_PACKAGE_LIBOPENSSL
+	select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
 	help
 	  User space daemon for wireless access points.
 
-- 
2.31.1

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

* [Buildroot] [PATCH/next 0/2] Enable more openssl features for hostapd/wpa_supplicant
  2021-05-26 19:56 [Buildroot] [PATCH/next 0/2] Enable more openssl features for hostapd/wpa_supplicant Sergey Matyukevich
  2021-05-26 19:56 ` [Buildroot] [PATCH/next 1/2] package/wpa_supplicant: enable DES in openssl Sergey Matyukevich
  2021-05-26 19:56 ` [Buildroot] [PATCH/next 2/2] package/hostapd: " Sergey Matyukevich
@ 2021-05-26 21:43 ` Yann E. MORIN
  2 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2021-05-26 21:43 UTC (permalink / raw)
  To: buildroot

Sergey, All,

On 2021-05-26 22:56 +0300, Sergey Matyukevich spake thusly:
> Hi all,
> 
> One more openssl crypto feature needs to be enabled for hostapd
> and wpa_supplicant. Last time it was MD4, now it is DES.
> 
> Regards,
> Sergey
> 
> Sergey Matyukevich (2):
>   package/wpa_supplicant: enable DES in openssl
>   package/hostapd: enable DES in openssl

Applied to next, thanks.

Regards,
Yann E. MORIN.

>  package/hostapd/Config.in        | 1 +
>  package/wpa_supplicant/Config.in | 1 +
>  2 files changed, 2 insertions(+)
> 
> -- 
> 2.31.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

end of thread, other threads:[~2021-05-26 21:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-26 19:56 [Buildroot] [PATCH/next 0/2] Enable more openssl features for hostapd/wpa_supplicant Sergey Matyukevich
2021-05-26 19:56 ` [Buildroot] [PATCH/next 1/2] package/wpa_supplicant: enable DES in openssl Sergey Matyukevich
2021-05-26 19:56 ` [Buildroot] [PATCH/next 2/2] package/hostapd: " Sergey Matyukevich
2021-05-26 21:43 ` [Buildroot] [PATCH/next 0/2] Enable more openssl features for hostapd/wpa_supplicant Yann E. MORIN

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.