ok, thanks, but if I do a: openssl ciphers -v "ALL:eNULL" | grep eNULL I don't see anything. How do I configure openssl so it will always be able to use the eNULL 'encryption' ? Ron On 12/01/2015 06:46 PM, Viktor Dukhovni wrote: > On Tue, Dec 01, 2015 at 03:34:09PM -0700, Ron Croonenberg wrote: > >> I want to build/compile openssl including the 'eNULL' cipher. I know it's >> not in ALL or default, because of "security risks". > > No need to recompile. > >> How do I include it and built it (downloaded a version from the github) > > The eNULL ciphers are available by default, but not in ALL. Just use: > > "ALL:COMPLEMENTOFALL" > > or > > "ALL:eNULL" > > or just > > "eNULL" > > as appropriate. This is documented in ciphers(1). >