RSAPrivateCrtKey
interface RSAPrivateCrtKey : RSAPrivateKey
java.security.interfaces.RSAPrivateCrtKey |
The interface to an RSA private key, as defined in the PKCS#1 v2.2 standard, using the Chinese Remainder Theorem (CRT) information values.
Summary
Constants | |
---|---|
static Long |
The type fingerprint that is set to indicate serialization compatibility with a previous version of the type. |
Public methods | |
---|---|
abstract BigInteger! |
Returns the crtCoefficient. |
abstract BigInteger! |
Returns the primeExponentP. |
abstract BigInteger! |
Returns the primeExponentQ. |
abstract BigInteger! |
Returns the primeP. |
abstract BigInteger! |
Returns the primeQ. |
abstract BigInteger! |
Returns the public exponent. |
Inherited functions | |
---|---|
Constants
serialVersionUID
static valserialVersionUID: Long
Deprecated: A serialVersionUID
field in an interface is ineffectual. Do not use; no replacement.
The type fingerprint that is set to indicate serialization compatibility with a previous version of the type.
Value: -5682214253527700368L
Public methods
getCrtCoefficient
abstract fun getCrtCoefficient(): BigInteger!
Returns the crtCoefficient.
Return | |
---|---|
BigInteger! |
the crtCoefficient |
getPrimeExponentP
abstract fun getPrimeExponentP(): BigInteger!
Returns the primeExponentP.
Return | |
---|---|
BigInteger! |
the primeExponentP |
getPrimeExponentQ
abstract fun getPrimeExponentQ(): BigInteger!
Returns the primeExponentQ.
Return | |
---|---|
BigInteger! |
the primeExponentQ |
getPrimeP
abstract fun getPrimeP(): BigInteger!
Returns the primeP.
Return | |
---|---|
BigInteger! |
the primeP |
getPrimeQ
abstract fun getPrimeQ(): BigInteger!
Returns the primeQ.
Return | |
---|---|
BigInteger! |
the primeQ |
getPublicExponent
abstract fun getPublicExponent(): BigInteger!
Returns the public exponent.
Return | |
---|---|
BigInteger! |
the public exponent |