mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8282320: Remove case conversion for debugging log in SSLCipher
Reviewed-by: weijun
This commit is contained in:
parent
b86a8c004f
commit
eac80214ae
1 changed files with 8 additions and 8 deletions
|
@ -1867,10 +1867,10 @@ enum SSLCipher {
|
||||||
this.random = random;
|
this.random = random;
|
||||||
|
|
||||||
keyLimitCountdown = cipherLimits.getOrDefault(
|
keyLimitCountdown = cipherLimits.getOrDefault(
|
||||||
algorithm.toUpperCase(Locale.ENGLISH) + ":" + tag[0], 0L);
|
algorithm.toUpperCase(Locale.ENGLISH) + ":" + tag[0], 0L);
|
||||||
if (SSLLogger.isOn && SSLLogger.isOn("ssl")) {
|
if (SSLLogger.isOn && SSLLogger.isOn("ssl")) {
|
||||||
SSLLogger.fine("KeyLimit read side: algorithm = " +
|
SSLLogger.fine("KeyLimit read side: algorithm = " +
|
||||||
algorithm.toUpperCase(Locale.ENGLISH) + ":" + tag[0] +
|
algorithm + ":" + tag[0] +
|
||||||
"\ncountdown value = " + keyLimitCountdown);
|
"\ncountdown value = " + keyLimitCountdown);
|
||||||
}
|
}
|
||||||
if (keyLimitCountdown > 0) {
|
if (keyLimitCountdown > 0) {
|
||||||
|
@ -2021,10 +2021,10 @@ enum SSLCipher {
|
||||||
this.random = random;
|
this.random = random;
|
||||||
|
|
||||||
keyLimitCountdown = cipherLimits.getOrDefault(
|
keyLimitCountdown = cipherLimits.getOrDefault(
|
||||||
algorithm.toUpperCase(Locale.ENGLISH) + ":" + tag[0], 0L);
|
algorithm.toUpperCase(Locale.ENGLISH) + ":" + tag[0], 0L);
|
||||||
if (SSLLogger.isOn && SSLLogger.isOn("ssl")) {
|
if (SSLLogger.isOn && SSLLogger.isOn("ssl")) {
|
||||||
SSLLogger.fine("KeyLimit write side: algorithm = "
|
SSLLogger.fine("KeyLimit write side: algorithm = "
|
||||||
+ algorithm.toUpperCase(Locale.ENGLISH) + ":" + tag[0] +
|
+ algorithm + ":" + tag[0] +
|
||||||
"\ncountdown value = " + keyLimitCountdown);
|
"\ncountdown value = " + keyLimitCountdown);
|
||||||
}
|
}
|
||||||
if (keyLimitCountdown > 0) {
|
if (keyLimitCountdown > 0) {
|
||||||
|
@ -2281,9 +2281,9 @@ enum SSLCipher {
|
||||||
this.random = random;
|
this.random = random;
|
||||||
|
|
||||||
keyLimitCountdown = cipherLimits.getOrDefault(
|
keyLimitCountdown = cipherLimits.getOrDefault(
|
||||||
algorithm.toUpperCase(Locale.ENGLISH) + ":" + tag[0], 0L);
|
algorithm.toUpperCase(Locale.ENGLISH) + ":" + tag[0], 0L);
|
||||||
if (SSLLogger.isOn && SSLLogger.isOn("ssl")) {
|
if (SSLLogger.isOn && SSLLogger.isOn("ssl")) {
|
||||||
SSLLogger.fine("algorithm = " + algorithm.toUpperCase(Locale.ENGLISH) +
|
SSLLogger.fine("algorithm = " + algorithm +
|
||||||
":" + tag[0] + "\ncountdown value = " +
|
":" + tag[0] + "\ncountdown value = " +
|
||||||
keyLimitCountdown);
|
keyLimitCountdown);
|
||||||
}
|
}
|
||||||
|
@ -2563,9 +2563,9 @@ enum SSLCipher {
|
||||||
this.random = random;
|
this.random = random;
|
||||||
|
|
||||||
keyLimitCountdown = cipherLimits.getOrDefault(
|
keyLimitCountdown = cipherLimits.getOrDefault(
|
||||||
algorithm.toUpperCase(Locale.ENGLISH) + ":" + tag[0], 0L);
|
algorithm.toUpperCase(Locale.ENGLISH) + ":" + tag[0], 0L);
|
||||||
if (SSLLogger.isOn && SSLLogger.isOn("ssl")) {
|
if (SSLLogger.isOn && SSLLogger.isOn("ssl")) {
|
||||||
SSLLogger.fine("algorithm = " + algorithm.toUpperCase(Locale.ENGLISH) +
|
SSLLogger.fine("algorithm = " + algorithm +
|
||||||
":" + tag[0] + "\ncountdown value = " +
|
":" + tag[0] + "\ncountdown value = " +
|
||||||
keyLimitCountdown);
|
keyLimitCountdown);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue