public class DHPublicKeySpec extends Object implements KeySpec
このクラスは、指定されたパラメータの検査を一切行いません。したがって、指定された値がnullであっても、それらが直接返されます。
DHPrivateKeySpec
コンストラクタと説明 |
---|
DHPublicKeySpec(BigInteger y, BigInteger p, BigInteger g)
公開値
y 、素数モジュラスp 、およびベース・ジェネレータg をとるコンストラクタです。 |
修飾子と型 | メソッドと説明 |
---|---|
BigInteger |
getG()
ベース・ジェネレータ
g を返します。 |
BigInteger |
getP()
素数モジュラス
p を返します。 |
BigInteger |
getY()
公開値
y を返します。 |
public DHPublicKeySpec(BigInteger y, BigInteger p, BigInteger g)
y
、素数モジュラスp
、およびベース・ジェネレータg
をとるコンストラクタです。y
- 公開値yp
- 素数モジュラスpg
- ベース・ジェネレータgpublic BigInteger getY()
y
を返します。y
public BigInteger getP()
p
を返します。p
public BigInteger getG()
g
を返します。g
バグまたは機能を送信
詳細なAPIリファレンスおよび開発者ドキュメントについては、Java SEのドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright© 1993, 2014, Oracle and/or its affiliates. All rights reserved.