java.security.spec
Class ECFieldF2m

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.security.spec.ECFieldF2m
All Implemented Interfaces:
ECField sample code for java.security.spec.ECField definition code for java.security.spec.ECField

public class ECFieldF2m
extends Object sample code for java.lang.Object definition code for java.lang.Object
implements ECField sample code for java.security.spec.ECField definition code for java.security.spec.ECField

This immutable class defines an elliptic curve (EC) characteristic 2 finite field.

Since:
1.5
See Also:
ECField sample code for java.security.spec.ECField definition code for java.security.spec.ECField

Constructor Summary
ECFieldF2m sample code for java.security.spec.ECFieldF2m.ECFieldF2m(int) definition code for java.security.spec.ECFieldF2m.ECFieldF2m(int) (int m)
          Creates an elliptic curve characteristic 2 finite field which has 2^m elements with normal basis.
ECFieldF2m sample code for java.security.spec.ECFieldF2m.ECFieldF2m(int, java.math.BigInteger) definition code for java.security.spec.ECFieldF2m.ECFieldF2m(int, java.math.BigInteger) (int m, BigInteger sample code for java.math.BigInteger definition code for java.math.BigInteger  rp)
          Creates an elliptic curve characteristic 2 finite field which has 2^m elements with polynomial basis.
ECFieldF2m sample code for java.security.spec.ECFieldF2m.ECFieldF2m(int, int[]) definition code for java.security.spec.ECFieldF2m.ECFieldF2m(int, int[]) (int m, int[] ks)
          Creates an elliptic curve characteristic 2 finite field which has 2^m elements with polynomial basis.
 
Method Summary
 boolean equals sample code for java.security.spec.ECFieldF2m.equals(java.lang.Object) definition code for java.security.spec.ECFieldF2m.equals(java.lang.Object) (Object sample code for java.lang.Object definition code for java.lang.Object  obj)
          Compares this finite field for equality with the specified object.
 int getFieldSize sample code for java.security.spec.ECFieldF2m.getFieldSize() definition code for java.security.spec.ECFieldF2m.getFieldSize() ()
          Returns the field size in bits which is m for this characteristic 2 finite field.
 int getM sample code for java.security.spec.ECFieldF2m.getM() definition code for java.security.spec.ECFieldF2m.getM() ()
          Returns the value m of this characteristic 2 finite field.
 int[] getMidTermsOfReductionPolynomial sample code for java.security.spec.ECFieldF2m.getMidTermsOfReductionPolynomial() definition code for java.security.spec.ECFieldF2m.getMidTermsOfReductionPolynomial() ()
          Returns an integer array which contains the order of the middle term(s) of the reduction polynomial for polynomial basis or null for normal basis.
 BigInteger sample code for java.math.BigInteger definition code for java.math.BigInteger getReductionPolynomial sample code for java.security.spec.ECFieldF2m.getReductionPolynomial() definition code for java.security.spec.ECFieldF2m.getReductionPolynomial() ()
          Returns a BigInteger whose i-th bit corresponds to the i-th coefficient of the reduction polynomial for polynomial basis or null for normal basis.
 int hashCode sample code for java.security.spec.ECFieldF2m.hashCode() definition code for java.security.spec.ECFieldF2m.hashCode() ()
          Returns a hash code value for this characteristic 2 finite field.
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , toString sample code for java.lang.Object.toString() definition code for java.lang.Object.toString() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Constructor Detail

ECFieldF2m sample code for java.security.spec.ECFieldF2m(int) definition code for java.security.spec.ECFieldF2m(int)

public ECFieldF2m(int m)
Creates an elliptic curve characteristic 2 finite field which has 2^m elements with normal basis.

Parameters:
m - with 2^m being the number of elements.
Throws:
IllegalArgumentException sample code for java.lang.IllegalArgumentException definition code for java.lang.IllegalArgumentException - if m is not positive.

ECFieldF2m sample code for java.security.spec.ECFieldF2m(int, java.math.BigInteger) definition code for java.security.spec.ECFieldF2m(int, java.math.BigInteger)

public ECFieldF2m(int m,
                  BigInteger sample code for java.math.BigInteger definition code for java.math.BigInteger  rp)
Creates an elliptic curve characteristic 2 finite field which has 2^m elements with polynomial basis. The reduction polynomial for this field is based on rp whose i-th bit correspondes to the i-th coefficient of the reduction polynomial.

Note: A valid reduction polynomial is either a trinomial (X^m + X^k + 1 with m > k >= 1) or a pentanomial (X^m + X^k3 + X^k2 + X^k1 + 1 with m > k3 > k2 > k1 >= 1).

Parameters:
m - with 2^m being the number of elements.
rp - the BigInteger whose i-th bit corresponds to the i-th coefficient of the reduction polynomial.
Throws:
NullPointerException sample code for java.lang.NullPointerException definition code for java.lang.NullPointerException - if rp is null.
IllegalArgumentException sample code for java.lang.IllegalArgumentException definition code for java.lang.IllegalArgumentException - if m is not positive, or rp does not represent a valid reduction polynomial.

ECFieldF2m sample code for java.security.spec.ECFieldF2m(int, int[]) definition code for java.security.spec.ECFieldF2m(int, int[])

public ECFieldF2m(int m,
                  int[] ks)
Creates an elliptic curve characteristic 2 finite field which has 2^m elements with polynomial basis. The reduction polynomial for this field is based on ks whose content contains the order of the middle term(s) of the reduction polynomial. Note: A valid reduction polynomial is either a trinomial (X^m + X^k + 1 with m > k >= 1) or a pentanomial (X^m + X^k3 + X^k2 + X^k1 + 1 with m > k3 > k2 > k1 >= 1), so ks should have length 1 or 3.

Parameters:
m - with 2^m being the number of elements.
ks - the order of the middle term(s) of the reduction polynomial. Contents of this array are copied to protect against subsequent modification.
Throws:
NullPointerException sample code for java.lang.NullPointerException definition code for java.lang.NullPointerException - if ks is null.
IllegalArgumentException sample code for java.lang.IllegalArgumentException definition code for java.lang.IllegalArgumentException - ifm is not positive, or the length of ks is neither 1 nor 3, or values in ks are not between m-1 and 1 (inclusive) and in descending order.
Method Detail

getFieldSize sample code for java.security.spec.ECFieldF2m.getFieldSize() definition code for java.security.spec.ECFieldF2m.getFieldSize()

public int getFieldSize()
Returns the field size in bits which is m for this characteristic 2 finite field.

Specified by:
getFieldSize sample code for java.security.spec.ECField.getFieldSize() definition code for java.security.spec.ECField.getFieldSize() in interface ECField sample code for java.security.spec.ECField definition code for java.security.spec.ECField
Returns:
the field size in bits.

getM sample code for java.security.spec.ECFieldF2m.getM() definition code for java.security.spec.ECFieldF2m.getM()

public int getM()
Returns the value m of this characteristic 2 finite field.

Returns:
m with 2^m being the number of elements.

getReductionPolynomial sample code for java.security.spec.ECFieldF2m.getReductionPolynomial() definition code for java.security.spec.ECFieldF2m.getReductionPolynomial()

public BigInteger sample code for java.math.BigInteger definition code for java.math.BigInteger  getReductionPolynomial()
Returns a BigInteger whose i-th bit corresponds to the i-th coefficient of the reduction polynomial for polynomial basis or null for normal basis.

Returns:
a BigInteger whose i-th bit corresponds to the i-th coefficient of the reduction polynomial for polynomial basis or null for normal basis.

getMidTermsOfReductionPolynomial sample code for java.security.spec.ECFieldF2m.getMidTermsOfReductionPolynomial() definition code for java.security.spec.ECFieldF2m.getMidTermsOfReductionPolynomial()

public int[] getMidTermsOfReductionPolynomial()
Returns an integer array which contains the order of the middle term(s) of the reduction polynomial for polynomial basis or null for normal basis.

Returns:
an integer array which contains the order of the middle term(s) of the reduction polynomial for polynomial basis or null for normal basis. A new array is returned each time this method is called.

equals sample code for java.security.spec.ECFieldF2m.equals(java.lang.Object) definition code for java.security.spec.ECFieldF2m.equals(java.lang.Object)

public boolean equals(Object sample code for java.lang.Object definition code for java.lang.Object  obj)
Compares this finite field for equality with the specified object.

Overrides:
equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) in class Object sample code for java.lang.Object definition code for java.lang.Object
Parameters:
obj - the object to be compared.
Returns:
true if obj is an instance of ECFieldF2m and both m and the reduction polynomial match, false otherwise.
See Also:
Object.hashCode() sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , Hashtable sample code for java.util.Hashtable definition code for java.util.Hashtable

hashCode sample code for java.security.spec.ECFieldF2m.hashCode() definition code for java.security.spec.ECFieldF2m.hashCode()

public int hashCode()
Returns a hash code value for this characteristic 2 finite field.

Overrides:
hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() in class Object sample code for java.lang.Object definition code for java.lang.Object
Returns:
a hash code value.
See Also:
Object.equals(java.lang.Object) sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , Hashtable sample code for java.util.Hashtable definition code for java.util.Hashtable