Module  java.base
软件包  java.security.spec

Class ECParameterSpec

    • 构造方法详细信息

      • ECParameterSpec

        public ECParameterSpec​(EllipticCurve curve,
                               ECPoint g,
                               BigInteger n,
                               int h)
        根据指定的值创建椭圆曲线域参数。
        参数
        curve - 该参数定义的椭圆曲线。
        g - 也称为 g的发电机。
        n - 发电机的顺序 g
        h - 辅因子。
        异常
        NullPointerException -如果 curveg ,或 n为null。
        IllegalArgumentException - 如果 nh
    • 方法详细信息

      • getCurve

        public EllipticCurve getCurve​()
        返回此参数定义的椭圆曲线。
        结果
        该参数定义的椭圆曲线。
      • getGenerator

        public ECPoint getGenerator​()
        返回也称为基点的生成器。
        结果
        也称为基点的发电机。
      • getOrder

        public BigInteger getOrder​()
        返回发生器的顺序。
        结果
        发电机的顺序。
      • getCofactor

        public int getCofactor​()
        返回辅助因子。
        结果
        辅因子。