Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sectransp: Remove large cipher table
Previously a large table of ciphers was used to determine the default ciphers and to lookup manually selected ciphers names. With the lookup of the manually selected cipher names moved to Curl_cipher_suite_walk_str() the large table is no longer needed for that purpose. The other use of the table was to filter the list of all supported ciphers offered by Secure Transport to create a list of ciphers to use by default, excluding ciphers in the table marked as weak. Instead of using a complement based approach (exclude weak) switch to using an intersection with a smaller list of ciphers deemed appropriate.
- Loading branch information