Home
last modified time | relevance | path

Searched refs:F2m (Results 1 – 8 of 8) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DECFieldElement.java501 public static class F2m extends ECFieldElement class in ECFieldElement.Fp
554 public F2m( in F2m() method in ECFieldElement.Fp.F2m
601 public F2m(int m, int k, BigInteger x) in F2m() method in ECFieldElement.Fp.F2m
607 private F2m(int m, int[] ks, LongArray x) in F2m() method in ECFieldElement.Fp.F2m
665 if ((!(a instanceof F2m)) || (!(b instanceof F2m))) in checkFieldElements()
671 ECFieldElement.F2m aF2m = (ECFieldElement.F2m)a; in checkFieldElements()
672 ECFieldElement.F2m bF2m = (ECFieldElement.F2m)b; in checkFieldElements()
692 F2m bF2m = (F2m)b; in add()
694 return new F2m(m, ks, iarrClone); in add()
699 return new F2m(m, ks, x.addOne()); in addOne()
[all …]
DECCurve.java878 public static class F2m extends AbstractF2m class in ECCurve
916 private ECPoint.F2m infinity; // can't be final - JDK 1.1
932 public F2m( in F2m() method in ECCurve.F2m
958 public F2m( in F2m() method in ECCurve.F2m
989 public F2m( in F2m() method in ECCurve.F2m
1023 public F2m( in F2m() method in ECCurve.F2m
1042 this.infinity = new ECPoint.F2m(this, null, null); in F2m()
1048 …protected F2m(int m, int k1, int k2, int k3, ECFieldElement a, ECFieldElement b, BigInteger order,… in F2m() method in ECCurve.F2m
1059 this.infinity = new ECPoint.F2m(this, null, null); in F2m()
1067 … return new F2m(this.m, this.k1, this.k2, this.k3, this.a, this.b, this.order, this.cofactor); in cloneCurve()
[all …]
DECPoint.java1577 public static class F2m extends AbstractF2m
1586 public F2m(ECCurve curve, ECFieldElement x, ECFieldElement y)
1599 public F2m(ECCurve curve, ECFieldElement x, ECFieldElement y, boolean withCompression)
1611 ECFieldElement.F2m.checkFieldElements(this.x, this.y);
1616 ECFieldElement.F2m.checkFieldElements(this.x, this.curve.getA());
1625F2m(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompressio…
1636 … return new ECPoint.F2m(null, this.getAffineXCoord(), this.getAffineYCoord()); // earlier JDK
1739 return new ECPoint.F2m(curve, X3, Y3, this.withCompression);
1776 … return new ECPoint.F2m(curve, X3, Y3, new ECFieldElement[]{ Z3 }, this.withCompression);
1836 … return new ECPoint.F2m(curve, X3, curve.getB().sqrt(), this.withCompression);
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
DX962NamedCurves.java182 ECCurve c2m163v1 = new ECCurve.F2m(
205 ECCurve c2m163v2 = new ECCurve.F2m(
228 ECCurve c2m163v3 = new ECCurve.F2m(
251 ECCurve c2m176w1 = new ECCurve.F2m(
274 ECCurve c2m191v1 = new ECCurve.F2m(
297 ECCurve c2m191v2 = new ECCurve.F2m(
320 ECCurve c2m191v3 = new ECCurve.F2m(
343 ECCurve c2m208w1 = new ECCurve.F2m(
366 ECCurve c2m239v1 = new ECCurve.F2m(
389 ECCurve c2m239v2 = new ECCurve.F2m(
[all …]
DX9FieldElement.java33 this(new ECFieldElement.F2m(m, k1, k2, k3, new BigInteger(1, s.getOctets()))); in X9FieldElement()
DX9Curve.java92 …curve = new ECCurve.F2m(m, k1, k2, k3, x9A.getValue().toBigInteger(), x9B.getValue().toBigInteger(… in X9Curve()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
DSECNamedCurves.java495 ECCurve curve = configureCurve(new ECCurve.F2m(m, k, a, b, n, h));
522 ECCurve curve = configureCurve(new ECCurve.F2m(m, k, a, b, n, h));
551 ECCurve curve = configureCurve(new ECCurve.F2m(m, k1, k2, k3, a, b, n, h));
580 ECCurve curve = configureCurve(new ECCurve.F2m(m, k1, k2, k3, a, b, n, h));
609 ECCurve curve = configureCurve(new ECCurve.F2m(m, k1, k2, k3, a, b, n, h));
638 ECCurve curve = configureCurve(new ECCurve.F2m(m, k1, k2, k3, a, b, n, h));
667 ECCurve curve = configureCurve(new ECCurve.F2m(m, k1, k2, k3, a, b, n, h));
694 ECCurve curve = configureCurve(new ECCurve.F2m(m, k, a, b, n, h));
721 ECCurve curve = configureCurve(new ECCurve.F2m(m, k, a, b, n, h));
748 ECCurve curve = configureCurve(new ECCurve.F2m(m, k, a, b, n, h));
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
DEC5Util.java236 return new ECCurve.F2m(m, ks[0], ks[1], ks[2], a, b); in convertCurve()