Package java.security.interfaces
Interface RSAPrivateCrtKey
-
- All Superinterfaces:
Key
,PrivateKey
,RSAKey
,RSAPrivateKey
,Serializable
public interface RSAPrivateCrtKey extends RSAPrivateKey
-
-
Field Summary
-
Fields inherited from interface java.security.PrivateKey
serialVersionUID
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BigInteger
getCrtCoefficient()
BigInteger
getPrimeExponentP()
BigInteger
getPrimeExponentQ()
BigInteger
getPrimeP()
BigInteger
getPrimeQ()
BigInteger
getPublicExponent()
-
Methods inherited from interface java.security.Key
getAlgorithm, getEncoded, getFormat
-
Methods inherited from interface java.security.interfaces.RSAKey
getModulus
-
Methods inherited from interface java.security.interfaces.RSAPrivateKey
getPrivateExponent
-
-
-
-
Method Detail
-
getPublicExponent
BigInteger getPublicExponent()
-
getPrimeP
BigInteger getPrimeP()
-
getPrimeQ
BigInteger getPrimeQ()
-
getPrimeExponentP
BigInteger getPrimeExponentP()
-
getPrimeExponentQ
BigInteger getPrimeExponentQ()
-
getCrtCoefficient
BigInteger getCrtCoefficient()
-
-