@@ -158,8 +158,8 @@ public void testRSASignVerify() throws Exception {
158158 boolean success = Asymmetric .verifySignatureRSA (sig , message_bytes , client , rsaSign );
159159 assertTrue ("RSA verification failed." , success );
160160 String changed = message + "." ;
161- byte [] changed_bytes = changed .getBytes (StandardCharsets .UTF_8 );
162- boolean shouldFail = Asymmetric .verifySignatureRSA (sig , changed_bytes , client , rsaSign );
161+ byte [] changedBytes = changed .getBytes (StandardCharsets .UTF_8 );
162+ boolean shouldFail = Asymmetric .verifySignatureRSA (sig , changedBytes , client , rsaSign );
163163 assertFalse ("RSA verification failed." , shouldFail );
164164 }
165165
@@ -171,8 +171,8 @@ public void testECSignVerify() throws Exception {
171171 boolean success = Asymmetric .verifySignatureEC (sig , message_bytes , client , ecSign );
172172 assertTrue ("RSA verification failed." , success );
173173 String changed = message + "." ;
174- byte [] changed_bytes = changed .getBytes (StandardCharsets .UTF_8 );
175- boolean shouldFail = Asymmetric .verifySignatureEC (sig , changed_bytes , client , ecSign );
174+ byte [] changedBytes = changed .getBytes (StandardCharsets .UTF_8 );
175+ boolean shouldFail = Asymmetric .verifySignatureEC (sig , changedBytes , client , ecSign );
176176 assertFalse ("RSA verification failed." , shouldFail );
177177 }
178178
0 commit comments