blob: cbc15e7aaac1c0fb19a8cc23ff841555765ea5f8 (
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
|
package cz.crcs.ectester.common.ec;
import java.math.BigInteger;
import java.security.spec.ECFieldFp;
import java.security.spec.ECParameterSpec;
import java.security.spec.ECPoint;
import java.security.spec.EllipticCurve;
/**
* @author David Hofman
*/
public class CustomECParameterSpec extends ECParameterSpec {
private EllipticCurve curve;
private ECPoint g;
private BigInteger n;
private int h;
public CustomECParameterSpec(EllipticCurve curve, ECPoint g, BigInteger n, int h) {
//feed the constructor of the superclass some default, valid data
//getters will return custom (and possibly invalid) parameters instead
super(new EllipticCurve(new ECFieldFp(BigInteger.ONE),BigInteger.ZERO,BigInteger.ZERO), new ECPoint(BigInteger.ZERO, BigInteger.ZERO), BigInteger.ONE, 1);
this.curve = curve;
this.g = g;
this.n = n;
this.h = h;
}
@Override
public EllipticCurve getCurve() {
return curve;
}
@Override
public ECPoint getGenerator() {
return g;
}
@Override
public BigInteger getOrder() {
return n;
}
@Override
public int getCofactor() {
return h;
}
}
|