-
Bug
-
Resolution: Fixed
-
P4
-
None
-
b05
In the SunJSSE provider implementation, there are a few local variables that is not necessary. For example:
byte[] finished = prfKey.getEncoded();
return finished;
could be simplified as:
return prfKey.getEncoded();
byte[] finished = prfKey.getEncoded();
return finished;
could be simplified as:
return prfKey.getEncoded();