On Thu, May 20, 2010 at 02:34:27 -0500, Skelton, Roch via RT wrote:
> To ensure compliance with high security environments, I would like to
> build my copy of openssl without support for the LOW and MEDIUM ciphers.
> After reviewing the various cipher and config options, I decided to use
> the following configuration:
> 
>  
> 
> ./config zlib shared no-RC2 no-RC4 no-SEED no-IDEA no-DES
> 
>  
> 
> This command line was acceptable to configure, but unfortunately the
> actual build process fails. Disabling any cipher results in a fatal
> error to the build when completing the make in ./crypto/(cipher). 
> 

Hmm, have you tried using lower-case names for the ciphers? This worked
for me:

$ ./config zlib no-rc2 no-idea no-seed no-des
$ make depend
$ make

Note that the build _did_ fail if no-rc4 was specified.

-- 
Iain Morgan
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       openssl-dev@openssl.org
Automated List Manager                           majord...@openssl.org

Reply via email to