8073163: Remove the redundant call of System.nanoTime() from RSACore

Remove the redundant call of System.nanoTime() in RSACore.java

Reviewed-by: mullan
This commit is contained in:
Valerie Peng 2015-02-18 04:01:33 +00:00
parent 377f09b1fa
commit efd0db4d6d

View File

@ -162,7 +162,6 @@ public final class RSACore {
*/
private static byte[] crtCrypt(byte[] msg, RSAPrivateCrtKey key,
boolean verify) throws BadPaddingException {
long start = System.nanoTime();
BigInteger n = key.getModulus();
BigInteger c0 = parseMsg(msg, n);
BigInteger c = c0;