Comment fixes and delta table fix

pull/116/head
Jack Tjaden 2025-06-10 14:37:42 -06:00
parent 529be5cb8a
commit 413d19dfcd
1 changed files with 1 additions and 4 deletions

View File

@ -103,7 +103,7 @@ public class CryptoBenchmark {
opsPerSec);
/* Store results for delta table */
results.add(new BenchmarkResult(providerName, operation, opsPerSec));
results.add(new BenchmarkResult(providerName, operation + " (" + mode + ")", opsPerSec));
}
/* List to store all benchmark results */
@ -729,7 +729,6 @@ public class CryptoBenchmark {
results.add(new BenchmarkResult(providerName, algorithm, throughput));
}
/* Run DH benchmarks for specified provider and key size */
/* Run DH benchmarks for specified provider and key size */
private static void runDHBenchmark(String providerName, int keySize) throws Exception {
/* Variables for benchmark operations */
@ -1300,8 +1299,6 @@ public class CryptoBenchmark {
return getWolfJCEAlgorithmsForService("Signature");
}
/* KeyGenerator benchmark */
/* KeyGenerator benchmark */
/* KeyGenerator benchmark */
private static void runKeyGeneratorBenchmark(String algorithm, String providerName) throws Exception {
/* Initialize KeyGenerator with specific provider */