クラス
java.security.spec.RSAOtherPrimeInfoの使用
| パッケージ | 説明 | 
|---|---|
| java.security.interfaces | RSA Laboratory Technical Note PKCS#1で定義されているRSA (Rivest, Shamir and Adleman AsymmetricCipher algorithm)キーと、NISTのFIPS-186で定義されているDSA (Digital Signature Algorithm)キーを生成するためのインタフェースを提供します。 | 
| java.security.spec | キー仕様およびアルゴリズム・パラメータ仕様のクラスおよびインタフェースを提供します。 | 
- 
java.security.interfacesでのRSAOtherPrimeInfoの使用RSAOtherPrimeInfoを返すjava.security.interfacesのメソッド 修飾子と型 メソッド 説明 RSAOtherPrimeInfo[]RSAMultiPrimePrivateCrtKey. getOtherPrimeInfo()otherPrimeInfoを返します。2つの素因数(pとq)だけしかない場合はnullを返します。
- 
java.security.specでのRSAOtherPrimeInfoの使用RSAOtherPrimeInfoを返すjava.security.specのメソッド 修飾子と型 メソッド 説明 RSAOtherPrimeInfo[]RSAMultiPrimePrivateCrtKeySpec. getOtherPrimeInfo()otherPrimeInfoの複製を返します。2つの素因数(pとq)だけしかない場合はnullを返します。RSAOtherPrimeInfo型のパラメータを持つjava.security.specのコンストラクタ コンストラクタ 説明 RSAMultiPrimePrivateCrtKeySpec(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger primeP, BigInteger primeQ, BigInteger primeExponentP, BigInteger primeExponentQ, BigInteger crtCoefficient, RSAOtherPrimeInfo[] otherPrimeInfo)新しいRSAMultiPrimePrivateCrtKeySpecを作成します。RSAMultiPrimePrivateCrtKeySpec(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger primeP, BigInteger primeQ, BigInteger primeExponentP, BigInteger primeExponentQ, BigInteger crtCoefficient, RSAOtherPrimeInfo[] otherPrimeInfo, AlgorithmParameterSpec keyParams)その他のキー・パラメータを含む新しいRSAMultiPrimePrivateCrtKeySpecを作成します。