Re: enabling null cipher

2020-08-27 Thread Matt Caswell
This should do it: openssl s_server -cert /path/to/cert -key /path/to/key -cipher eNULL@SECLEVEL=0 -no_tls1_3 >From the client side: openssl s_client -cipher eNULL@SECLEVEL=0 Matt On 27/08/2020 05:32, vishwas k.n. wrote: > Hello All, > > Could someone please let me know what is the right wa

enabling null cipher

2020-08-26 Thread vishwas k.n.
Hello All, Could someone please let me know what is the right way to enable null-ciphers in openssl. I want to do some performance evaluations with openssl and as a part of the exercise, want to tabulate performance with null encryption ciphers too. Want to get this working with openssl s_server