java.lang.Object
java.security.spec.DSAPrivateKeySpec
- すべての実装されたインタフェース:
KeySpec
public class DSAPrivateKeySpec extends Object implements KeySpec
関連したパラメータを使ってDSA非公開キーを指定します。
- 導入されたバージョン:
- 1.2
- 関連項目:
Key
,KeyFactory
,KeySpec
,DSAPublicKeySpec
,PKCS8EncodedKeySpec
-
コンストラクタのサマリー
コンストラクタ コンストラクタ 説明 DSAPrivateKeySpec(BigInteger x, BigInteger p, BigInteger q, BigInteger g)
指定されたパラメータ値を使って新しいDSAPrivateKeySpecを作成します。 -
メソッドのサマリー
修飾子と型 メソッド 説明 BigInteger
getG()
底g
を返します。BigInteger
getP()
素数p
を返します。BigInteger
getQ()
サブ素数q
を返します。BigInteger
getX()
非公開キーx
を返します。
-
コンストラクタの詳細
-
DSAPrivateKeySpec
public DSAPrivateKeySpec(BigInteger x, BigInteger p, BigInteger q, BigInteger g)指定されたパラメータ値を使って新しいDSAPrivateKeySpecを作成します。- パラメータ:
x
- 非公開キー。p
- 素数。q
- サブ素数。g
- 底。
-
-
メソッドの詳細
-
getX
public BigInteger getX()非公開キーx
を返します。- 戻り値:
- 非公開キー
x
。
-
getP
public BigInteger getP()素数p
を返します。- 戻り値:
- 素数
p
。
-
getQ
public BigInteger getQ()サブ素数q
を返します。- 戻り値:
- サブ素数
q
。
-
getG
public BigInteger getG()底g
を返します。- 戻り値:
- 底
g
。
-