public class DSAPrivateKeySpec extends Object implements KeySpec
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 を返します。 |
public DSAPrivateKeySpec(BigInteger x, BigInteger p, BigInteger q, BigInteger g)
x - 非公開鍵。p - 素数。q - サブ素数。g - 底。public BigInteger getX()
x を返します。x。public BigInteger getP()
p を返します。p。public BigInteger getQ()
q を返します。q。public BigInteger getG()
g を返します。g。 バグまたは機能を送信
詳細な API リファレンスおよび開発者ドキュメントについては、Java SE のドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright © 1993, 2013, Oracle and/or its affiliates. All rights reserved.