summaryrefslogtreecommitdiff
path: root/src/cz/crcs/ectester/common/ec/EC_SigResult.java
blob: 05959444c39003b40c370e31baa490f0ae9070c0 (plain) (blame)
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
64
65
package cz.crcs.ectester.common.ec;

import cz.crcs.ectester.common.util.CardUtil;

/**
 * A result of EC based Signature operation.
 *
 * @author Jan Jancar johny@neuromancer.sk
 */
public class EC_SigResult extends EC_Data {
    private String sig;
    private String curve;
    private String signKey;
    private String verifyKey;

    private String desc;

    public EC_SigResult(String sig, String curve, String signKey, String verifyKey) {
        super(1);
        this.sig = sig;
        this.curve = curve;
        this.signKey = signKey;
        this.verifyKey = verifyKey;
    }

    public EC_SigResult(String id, String sig, String curve, String signKey, String verifyKey) {
        this(sig, curve, signKey, verifyKey);
        this.id = id;
    }

    public EC_SigResult(String id, String sig, String curve, String signKey, String verifyKey, String desc) {
        this(id, sig, curve, signKey, verifyKey);
        this.desc = desc;
    }

    public String getSig() {
        return sig;
    }

    public byte getJavaCardSig() {
        return CardUtil.getSig(sig);
    }

    public String getCurve() {
        return curve;
    }

    public String getSignKey() {
        return signKey;
    }

    public String getVerifyKey() {
        return verifyKey;
    }

    public String getDesc() {
        return desc;
    }

    @Override
    public String toString() {
        return "<" + getId() + "> " + sig + " result over " + curve + ", " + signKey + " + " + verifyKey + (desc == null ? "" : ": " + desc) + System.lineSeparator() + super.toString();
    }

}