java.security.spec

Class EllipticCurve


  • public class EllipticCurve
    extends Object
    This immutable class holds the necessary values needed to represent an elliptic curve.
    Since:
    1.5
    See Also:
    ECField, ECFieldFp, ECFieldF2m
    • Constructor Detail

      • EllipticCurve

        public EllipticCurve(ECField field,
                     BigInteger a,
                     BigInteger b)
        Creates an elliptic curve with the specified elliptic field field and the coefficients a and b.
        Parameters:
        field - the finite field that this elliptic curve is over.
        a - the first coefficient of this elliptic curve.
        b - the second coefficient of this elliptic curve.
        Throws:
        NullPointerException - if field, a, or b is null.
        IllegalArgumentException - if a or b is not null and not in field.
      • EllipticCurve

        public EllipticCurve(ECField field,
                     BigInteger a,
                     BigInteger b,
                     byte[] seed)
        Creates an elliptic curve with the specified elliptic field field, the coefficients a and b, and the seed used for curve generation.
        Parameters:
        field - the finite field that this elliptic curve is over.
        a - the first coefficient of this elliptic curve.
        b - the second coefficient of this elliptic curve.
        seed - the bytes used during curve generation for later validation. Contents of this array are copied to protect against subsequent modification.
        Throws:
        NullPointerException - if field, a, or b is null.
        IllegalArgumentException - if a or b is not null and not in field.
    • Method Detail

      • getField

        public ECField getField()
        Returns the finite field field that this elliptic curve is over.
        Returns:
        the field field that this curve is over.
      • getA

        public BigInteger getA()
        Returns the first coefficient a of the elliptic curve.
        Returns:
        the first coefficient a.
      • getB

        public BigInteger getB()
        Returns the second coefficient b of the elliptic curve.
        Returns:
        the second coefficient b.
      • getSeed

        public byte[] getSeed()
        Returns the seeding bytes seed used during curve generation. May be null if not specified.
        Returns:
        the seeding bytes seed. A new array is returned each time this method is called.
      • equals

        public boolean equals(Object obj)
        Compares this elliptic curve for equality with the specified object.
        Overrides:
        equals in class Object
        Parameters:
        obj - the object to be compared.
        Returns:
        true if obj is an instance of EllipticCurve and the field, A, and B match, false otherwise.
        See Also:
        Object.hashCode(), HashMap

Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-java/security/spec/ellipticcurve.html

The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.

References

  1. View the html document Language of the document:fr Manuel PHP : https://docs.oracle.com

These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.

Contents Haut