计算 encryption/decryption DNA encryption/decryption 在 java 中的时间

calculate encryption/decryption time of DNA encryption/decryption in java

我在 NetBeans IDE 的 java 中实现了 DNA 加密和解密代码。我想知道有没有办法计算加解密时间。

long startTime = System.nanoTime();
encryption/decryptionMethodToTime();
long endTime = System.nanoTime();

long duration = (endTime - startTime);  //divide by 1000000 to get milliseconds.