JBenchX eclipse很慢

时间:2015-06-10 09:11:32

标签: java eclipse

我正在编写一个JBenchX方法,使用flexiprovider计算CMSS签名的密钥。我想获得我的方法createKeys的时间,但这非常非常慢。没有@Bench注释太快< 1秒。你能帮忙理解这里发生了什么吗?

import de.flexiprovider.api.exceptions.NoSuchAlgorithmException;
import de.flexiprovider.api.keys.KeyPair;
import de.flexiprovider.api.keys.KeyPairGenerator;
import org.jbenchx.annotations.Bench;
import org.jbenchx.annotations.ForEachInt;
import org.jbenchx.annotations.ForEachString;
import org.jbenchx.annotations.SingleRun;

public class CMSSTest {

@Bench
public Object createKeys(@ForEachString({ "CMSSwithSHA1andWinternitzOTS_1" }) String cmss) throws NoSuchAlgorithmException {
    Security.addProvider(new FlexiPQCProvider());

        //byte[] signatureBytes = null;
        KeyPairGenerator kpg = (CMSSKeyPairGenerator) Registry
                .getKeyPairGenerator(cmss);
        KeyPair keyPair = kpg.genKeyPair();
}
}

实际输出是并且尚未激活。

初始化基准测试框架...... 在Linux Linux上运行 最大堆= 1345847296系统基准= 11,8ns 执行1个基准测试任务.. [0] CMSSTest.createObjectArray(CMSSwithSHA1andWinternitzOTS_1)!*!** !!! ****** !! ******!****!**** !! ******! !!! *******!******!****!********* ******

1 个答案:

答案 0 :(得分:1)

问题似乎是Registry.getKeyPairGenerator创建了一个新的KeyPairGenerator,它使用' true'进行初始化。随机种子。为此,系统可能必须等待足够的熵可用。因此,您不应将此作为要进行基准测试的代码的一部分。

尝试这样的事情:

import java.security.Security;

import org.jbenchx.annotations.Bench;
import org.jbenchx.annotations.ForEachString;

import de.flexiprovider.api.Registry;
import de.flexiprovider.api.exceptions.NoSuchAlgorithmException;
import de.flexiprovider.api.keys.KeyPair;
import de.flexiprovider.api.keys.KeyPairGenerator;
import de.flexiprovider.pqc.FlexiPQCProvider;

public class CMSSTest {

  static {
    Security.addProvider(new FlexiPQCProvider());
  }

  private final KeyPairGenerator kpg;

  public CMSSTest(@ForEachString({"CMSSwithSHA1andWinternitzOTS_1"}) String cmss) throws NoSuchAlgorithmException {
    this.kpg = Registry.getKeyPairGenerator(cmss);
  }

  @Bench
  public Object createKeys() {
    KeyPair keyPair = kpg.genKeyPair();
    return keyPair;
  }
}