use of org.xipki.security.speed.p11.P11ECSignLoadTest in project xipki by xipki.
the class BSpeedP11ECSignCmd method nextTester.
@Override
protected LoadExecutor nextTester() throws Exception {
ECControl control = queue.poll();
if (control == null) {
return null;
}
P11Slot slot = getSlot();
return new P11ECSignLoadTest(securityFactory, slot, sigAlgo, control.curveName());
}
Aggregations