blob: 0ee3801d922449fee9c113991b37d757ea0cf32c (
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
|
package cz.crcs.ectester.reader.ec;
import cz.crcs.ectester.applet.EC_Consts;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public class EC_Keypair extends EC_Params {
private String curve;
private String desc;
public EC_Keypair(String curve) {
super(EC_Consts.PARAMETERS_KEYPAIR);
this.curve = curve;
}
public EC_Keypair(String curve, String desc) {
this(curve);
this.desc = desc;
}
public String getCurve() {
return curve;
}
public String getDesc() {
return desc;
}
}
|