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
58
59
60
61
62
63
|
package cz.crcs.ectester.reader.ec;
import cz.crcs.ectester.reader.Util;
/**
* A result of EC based Key agreement operation.
*
* @author Jan Jancar johny@neuromancer.sk
*/
public class EC_KAResult extends EC_Data {
private byte ka;
private String curve;
private String oneKey;
private String otherKey;
private String desc;
public EC_KAResult(byte ka, String curve, String oneKey, String otherKey) {
super(1);
this.ka = ka;
this.curve = curve;
this.oneKey = oneKey;
this.otherKey = otherKey;
}
public EC_KAResult(String id, byte ka, String curve, String oneKey, String otherKey) {
this(ka, curve, oneKey, otherKey);
this.id = id;
}
public EC_KAResult(String id, byte ka, String curve, String oneKey, String otherKey, String desc) {
this(id, ka, curve, oneKey, otherKey);
this.desc = desc;
}
public byte getKA() {
return ka;
}
public String getCurve() {
return curve;
}
public String getOneKey() {
return oneKey;
}
public String getOtherKey() {
return otherKey;
}
public String getDesc() {
return desc;
}
@Override
public String toString() {
String algo = Util.getKA(ka);
return "<" + getId() + "> " + algo + " result over " + curve + ", " + oneKey + " + " + otherKey + (desc == null ? "" : ": " + desc);
}
}
|