blob: 713effef75ccb244fb4909aaaf01a2f47695b280 (
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
|
package cz.crcs.ectester.common.util;
import java.math.BigInteger;
import java.security.spec.ECPoint;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public class ECUtil {
public static byte[] toX962Compressed(ECPoint point) {
if (point.equals(ECPoint.POINT_INFINITY)) {
return new byte[]{0};
}
byte[] x = point.getAffineX().toByteArray();
byte marker = (byte) (0x02 | point.getAffineY().mod(BigInteger.valueOf(2)).byteValue());
return ByteUtil.concatenate(new byte[]{marker}, x);
}
public static byte[] toX962Uncompressed(ECPoint point) {
if (point.equals(ECPoint.POINT_INFINITY)) {
return new byte[]{0};
}
byte[] x = point.getAffineX().toByteArray();
byte[] y = point.getAffineY().toByteArray();
return ByteUtil.concatenate(new byte[]{0x04}, x, y);
}
public static byte[] toX962Hybrid(ECPoint point) {
if (point.equals(ECPoint.POINT_INFINITY)) {
return new byte[]{0};
}
byte[] x = point.getAffineX().toByteArray();
byte[] y = point.getAffineY().toByteArray();
byte marker = (byte) (0x06 | point.getAffineY().mod(BigInteger.valueOf(2)).byteValue());
return ByteUtil.concatenate(new byte[]{marker}, x, y);
}
}
|