On the account that “we are better equipped”, Go will now ignore the order of the CipherSuite option, starting with Go 1.18, due this month.
The sorting logic is detailed in the code.
Several choices seem strange to me:
The static nature of the sorting algorithm also leads to security conundrums such as the fact that updating the Go library and recompiling programs will be required if a vulnerability is found in an algorithm implementation (e.g. Lucky13 for the CBC-SHA256 Go implementation); you won’t be able to just reduce its priority by updating a config file.
What’s your take on this? Can you explain some of the choices that feel strange to me?
Edit: the Github issue of the proposal