|
JavaTM Platform Standard Ed. 6 |
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Object java.security.spec.RSAPrivateKeySpec java.security.spec.RSAPrivateCrtKeySpec
public class RSAPrivateCrtKeySpec
このクラスは、中国剰余定理 (CRT) の情報の値を使って RSA 非公開鍵 (PKCS#1 標準の定義による) を効率を向上させるために指定します。
Key
,
KeyFactory
,
KeySpec
,
PKCS8EncodedKeySpec
,
RSAPrivateKeySpec
,
RSAPublicKeySpec
コンストラクタの概要 | |
---|---|
RSAPrivateCrtKeySpec(BigInteger modulus,
BigInteger publicExponent,
BigInteger privateExponent,
BigInteger primeP,
BigInteger primeQ,
BigInteger primeExponentP,
BigInteger primeExponentQ,
BigInteger crtCoefficient)
PKCS#1 に定義された modulus、publicExponent、privateExponent、primeP、primeQ、primeExponentP、primeExponentQ、および crtCoefficient を指定し、新しい RSAPrivateCrtKeySpec を作成します。 |
メソッドの概要 | |
---|---|
BigInteger |
getCrtCoefficient()
crtCoefficient を返します。 |
BigInteger |
getPrimeExponentP()
primeExponentP を返します。 |
BigInteger |
getPrimeExponentQ()
primeExponentQ を返します。 |
BigInteger |
getPrimeP()
primeP を返します。 |
BigInteger |
getPrimeQ()
primeQ を返します。 |
BigInteger |
getPublicExponent()
公開指数を返します。 |
クラス java.security.spec.RSAPrivateKeySpec から継承されたメソッド |
---|
getModulus, getPrivateExponent |
クラス java.lang.Object から継承されたメソッド |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
コンストラクタの詳細 |
---|
public RSAPrivateCrtKeySpec(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger primeP, BigInteger primeQ, BigInteger primeExponentP, BigInteger primeExponentQ, BigInteger crtCoefficient)
RSAPrivateCrtKeySpec
を作成します。
modulus
- モジュラス npublicExponent
- 公開指数 eprivateExponent
- 非公開指数 dprimeP
- n の素因数 pprimeQ
- n の素因数 qprimeExponentP
- d mod (p-1)primeExponentQ
- d mod (q-1)crtCoefficient
- 中国剰余定理の係数 q-1 mod pメソッドの詳細 |
---|
public BigInteger getPublicExponent()
public BigInteger getPrimeP()
public BigInteger getPrimeQ()
public BigInteger getPrimeExponentP()
public BigInteger getPrimeExponentQ()
public BigInteger getCrtCoefficient()
|
JavaTM Platform Standard Ed. 6 |
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
Copyright 2009 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Documentation Redistribution Policy も参照してください。