|
JavaTM Platform Standard Ed. 6 |
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Object java.security.spec.RSAOtherPrimeInfo
public class RSAOtherPrimeInfo
このクラスは、RSA の OtherPrimeInfo 構造 (PKCS#1 v2.1 の定義による) 内部の三重項 (素数、指数、係数) を表します。RSA の OtherPrimeInfo の ASN.1 構文を次に示します。
OtherPrimeInfo ::= SEQUENCE { prime INTEGER, exponent INTEGER, coefficient INTEGER }
RSAPrivateCrtKeySpec
,
RSAMultiPrimePrivateCrtKey
コンストラクタの概要 | |
---|---|
RSAOtherPrimeInfo(BigInteger prime,
BigInteger primeExponent,
BigInteger crtCoefficient)
PKCS#1 の定義によるprime、primeExponent、crtCoefficient を与える新しい RSAOtherPrimeInfo を作成します。 |
メソッドの概要 | |
---|---|
BigInteger |
getCrtCoefficient()
プライムの crtCoefficient を返します。 |
BigInteger |
getExponent()
プライムの指数を返します。 |
BigInteger |
getPrime()
プライムを返します。 |
クラス java.lang.Object から継承されたメソッド |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
コンストラクタの詳細 |
---|
public RSAOtherPrimeInfo(BigInteger prime, BigInteger primeExponent, BigInteger crtCoefficient)
RSAOtherPrimeInfo
を作成します。
prime
- n の素因数primeExponent
- 指数crtCoefficient
- 中国剰余定理の係数
NullPointerException
- prime
、primeExponent
、crtCoefficient
のいずれかのパラメータが null の場合メソッドの詳細 |
---|
public final BigInteger getPrime()
public final BigInteger getExponent()
public final BigInteger getCrtCoefficient()
|
JavaTM Platform Standard Ed. 6 |
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
Copyright 2009 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Documentation Redistribution Policy も参照してください。