Re: [edk2-devel] [PATCH 1/1] CryptoPkg/TlsLib: fix tls cipher configuration

2023-10-04 Thread Gerd Hoffmann
Hi, > > + CHAR8 *CipherString; > > + CHAR8 *CipherStringPosition; > > + > > + STACK_OF (SSL_CIPHER) *OpensslCipherStack; > > Surprisingly, this does pass uncrustify. :) OK. Wasn't my idea, uncrustify actually formatted it that way for me ;) > > -Mapping = T

Re: [edk2-devel] [PATCH 1/1] CryptoPkg/TlsLib: fix tls cipher configuration

2023-09-30 Thread Laszlo Ersek
On 9/29/23 15:23, Gerd Hoffmann wrote: > Trying to configure the TLS ciphers can lead to TLS handshake failures > because TlsCipherMappingTable is not in line with the ciphers actually > supported by OpensslLib. > > Fix that by removing TlsCipherMappingTable altogether. Use > SSL_get_ciphers() in