RSAPrivateCrtKey (Java SE 9 & JDK 9 ) (original) (raw)
- All Superinterfaces:
[Destroyable](../../../javax/security/auth/Destroyable.html "interface in javax.security.auth")
,[Key](../../../java/security/Key.html "interface in java.security")
,[PrivateKey](../../../java/security/PrivateKey.html "interface in java.security")
,[RSAKey](../../../java/security/interfaces/RSAKey.html "interface in java.security.interfaces")
,[RSAPrivateKey](../../../java/security/interfaces/RSAPrivateKey.html "interface in java.security.interfaces")
,[Serializable](../../../java/io/Serializable.html "interface in java.io")
public interface RSAPrivateCrtKey
extends RSAPrivateKey
The interface to an RSA private key, as defined in the PKCS#1 standard, using the Chinese Remainder Theorem (CRT) information values.
Since:
1.2
See Also:
RSAPrivateKey
Field Summary
Fields
Modifier and Type Field Description static long serialVersionUID The type fingerprint that is set to indicate serialization compatibility with a previous version of the type. Method Summary
All Methods Instance Methods Abstract Methods
Modifier and Type Method Description BigInteger getCrtCoefficient() Returns the crtCoefficient. BigInteger getPrimeExponentP() Returns the primeExponentP. BigInteger getPrimeExponentQ() Returns the primeExponentQ. BigInteger getPrimeP() Returns the primeP. BigInteger getPrimeQ() Returns the primeQ. BigInteger getPublicExponent() Returns the public exponent. * ### Methods inherited from interface javax.security.auth.[Destroyable](../../../javax/security/auth/Destroyable.html "interface in javax.security.auth") `[destroy](../../../javax/security/auth/Destroyable.html#destroy--), [isDestroyed](../../../javax/security/auth/Destroyable.html#isDestroyed--)` * ### Methods inherited from interface java.security.[Key](../../../java/security/Key.html "interface in java.security") `[getAlgorithm](../../../java/security/Key.html#getAlgorithm--), [getEncoded](../../../java/security/Key.html#getEncoded--), [getFormat](../../../java/security/Key.html#getFormat--)` * ### Methods inherited from interface java.security.interfaces.[RSAKey](../../../java/security/interfaces/RSAKey.html "interface in java.security.interfaces") `[getModulus](../../../java/security/interfaces/RSAKey.html#getModulus--)` * ### Methods inherited from interface java.security.interfaces.[RSAPrivateKey](../../../java/security/interfaces/RSAPrivateKey.html "interface in java.security.interfaces") `[getPrivateExponent](../../../java/security/interfaces/RSAPrivateKey.html#getPrivateExponent--)`
Field Detail
* #### serialVersionUID static final long serialVersionUID The type fingerprint that is set to indicate serialization compatibility with a previous version of the type. See Also: [Constant Field Values](../../../constant-values.html#java.security.interfaces.RSAPrivateCrtKey.serialVersionUID)
Method Detail
* #### getPublicExponent [BigInteger](../../../java/math/BigInteger.html "class in java.math") getPublicExponent() Returns the public exponent. Returns: the public exponent * #### getPrimeP [BigInteger](../../../java/math/BigInteger.html "class in java.math") getPrimeP() Returns the primeP. Returns: the primeP * #### getPrimeQ [BigInteger](../../../java/math/BigInteger.html "class in java.math") getPrimeQ() Returns the primeQ. Returns: the primeQ * #### getPrimeExponentP [BigInteger](../../../java/math/BigInteger.html "class in java.math") getPrimeExponentP() Returns the primeExponentP. Returns: the primeExponentP * #### getPrimeExponentQ [BigInteger](../../../java/math/BigInteger.html "class in java.math") getPrimeExponentQ() Returns the primeExponentQ. Returns: the primeExponentQ * #### getCrtCoefficient [BigInteger](../../../java/math/BigInteger.html "class in java.math") getCrtCoefficient() Returns the crtCoefficient. Returns: the crtCoefficient
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2017, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.