Skip to content

Commit

Permalink
Fixed version, cipher suite, and workflow setting
Browse files Browse the repository at this point in the history
  • Loading branch information
NErinola committed Jun 9, 2022
1 parent 044eb00 commit 63b5b75
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public DirectRaccoonResult executeTest() {
if (suite.usesDH() && CipherSuite.getImplemented().contains(suite)) {
InformationLeakTest<DirectRaccoonOracleTestInfo> informationLeakTest =
createDirectRaccoonInformationLeakTest(pair.getVersion(), suite,
DirectRaccoonWorkflowType.CKE_CCS_FIN);
DirectRaccoonWorkflowType.CKE);
testResultList.add(informationLeakTest);

}
Expand Down Expand Up @@ -105,7 +105,11 @@ private List<VectorResponse> getVectorResponseList(ProtocolVersion version, Ciph
List<TlsTask> taskList = new LinkedList<>();
for (Boolean nullByte : withNullByteList) {
Config config = configSelector.getBaseConfig();
config.setHighestProtocolVersion(version);
config.setDefaultClientSupportedCipherSuites(suite);
config.setWorkflowExecutorShouldClose(false);
config.setStopActionsAfterWarning(false);
config.setStopReceivingAfterWarning(false);
config.setStopActionsAfterFatal(false);
config.setStopReceivingAfterFatal(false);
WorkflowTrace trace =
Expand Down

0 comments on commit 63b5b75

Please sign in to comment.