-
Bug
-
Resolution: Fixed
-
P3
-
17, 19
-
b12
In the TlsChannelBinding.java implementation, the string operation is placed before the case conversion. The behavior may be not expected.
String hashAlg = serverCertificate.getSigAlgName().
- replace("SHA", "SHA-").toUpperCase(Locale.ENGLISH);
+ toUpperCase(Locale.ENGLISH).replace("SHA", "SHA-");
String hashAlg = serverCertificate.getSigAlgName().
- replace("SHA", "SHA-").toUpperCase(Locale.ENGLISH);
+ toUpperCase(Locale.ENGLISH).replace("SHA", "SHA-");