public class ECParameterSpec extends Object implements AlgorithmParameterSpec
AlgorithmParameterSpec
コンストラクタと説明 |
---|
ECParameterSpec(EllipticCurve curve, ECPoint g, BigInteger n, int h)
指定された値に基づいて楕円曲線ドメインパラメータを作成します。
|
修飾子と型 | メソッドと説明 |
---|---|
int |
getCofactor()
余因子を返します。
|
EllipticCurve |
getCurve()
このパラメータが定義する楕円曲線を返します。
|
ECPoint |
getGenerator()
ジェネレータ (「基底点 (base point)」とも呼ばれる) を返します。
|
BigInteger |
getOrder()
ジェネレータの位数を返します。
|
public ECParameterSpec(EllipticCurve curve, ECPoint g, BigInteger n, int h)
curve
- このパラメータが定義する楕円曲線。g
- ジェネレータ。「基底点 (base point)」とも呼ばれる。n
- ジェネレータ g
の位数。h
- 余因子。NullPointerException
- curve
、g
、または n
が null の場合。IllegalArgumentException
- n
または h
が正でない場合。public EllipticCurve getCurve()
public ECPoint getGenerator()
public BigInteger getOrder()
public int getCofactor()
バグまたは機能を送信
詳細な API リファレンスおよび開発者ドキュメントについては、Java SE のドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright © 1993, 2013, Oracle and/or its affiliates. All rights reserved.