kumquat-buildroot/package/sscep/Config.in
Dario Binacchi af8200a4c3 package/sscep: requires des support in openssl
Enable des in openssl to fix the following build failure raised
since the addition of the package in commit
72fa60dc10:

src/sscep.c: In function 'get_cipher_alg':
src/sscep.c:119:32: warning: implicit declaration of function 'EVP_des_ede3_cbc'; did you mean 'NID_des_ede3_cbc'? [-Wimplicit-function-declaration]
  119 |                         return EVP_des_ede3_cbc();
      |                                ^~~~~~~~~~~~~~~~
      |                                NID_des_ede3_cbc

Fixes:
 - http://autobuild.buildroot.net/results/34bd76e8e5e7df0db31918d610a0dadf531f369d

Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2023-01-16 21:16:29 +01:00

11 lines
366 B
Plaintext

config BR2_PACKAGE_SSCEP
bool "sscep"
select BR2_PACKAGE_LIBOPENSSL_ENABLE_BLOWFISH if BR2_PACKAGE_LIBOPENSSL
select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
select BR2_PACKAGE_OPENSSL
help
SSCEP is a client-only implementation of the SCEP
(Cisco System's Simple Certificate Enrollment Protocol).
https://github.com/certnanny/sscep