blob: 5f697c4a2889d5140da95510ea08c1204a3d25af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
package cz.crcs.ectester.standalone.test;
import cz.crcs.ectester.common.test.Result;
import cz.crcs.ectester.common.test.SimpleTest;
import cz.crcs.ectester.common.test.TestCallback;
import cz.crcs.ectester.common.test.TestException;
import java.util.Arrays;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public class KeyAgreementTest extends SimpleTest<KeyAgreementTestable> {
private KeyAgreementTest(KeyAgreementTestable ka, TestCallback<KeyAgreementTestable> callback) {
super(ka, callback);
}
public static KeyAgreementTest match(KeyAgreementTestable ka, byte[] expectedSecret) {
return new KeyAgreementTest(ka, new TestCallback<KeyAgreementTestable>() {
@Override
public Result apply(KeyAgreementTestable ka) {
if (Arrays.equals(ka.getSecret(), expectedSecret)) {
return new Result(Result.Value.SUCCESS, "The KeyAgreement result matched the expected derived secret.");
} else {
return new Result(Result.Value.FAILURE, "The KeyAgreement result did not match the expected derived secret.");
}
}
});
}
public static KeyAgreementTest expect(KeyAgreementTestable ka, Result.ExpectedValue expected) {
return new KeyAgreementTest(ka, new TestCallback<KeyAgreementTestable>() {
@Override
public Result apply(KeyAgreementTestable keyAgreementTestable) {
return new Result(Result.Value.fromExpected(expected, keyAgreementTestable.ok(), keyAgreementTestable.error()));
}
});
}
public static KeyAgreementTest function(KeyAgreementTestable ka, TestCallback<KeyAgreementTestable> callback) {
return new KeyAgreementTest(ka, callback);
}
@Override
public String getDescription() {
return "KeyAgreement " + testable.getKa().getAlgorithm();
}
@Override
public void run() throws TestException {
if (hasRun)
return;
testable.run();
result = callback.apply(testable);
hasRun = true;
}
}
|