< prev index next >

src/java.base/share/classes/java/security/spec/RSAPrivateKeySpec.java

Print this page




  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.security.spec;
  27 
  28 import java.math.BigInteger;
  29 
  30 /**
  31  * This class specifies an RSA private key.
  32  *
  33  * @author Jan Luehe

  34  *
  35  *
  36  * @see java.security.Key
  37  * @see java.security.KeyFactory
  38  * @see KeySpec
  39  * @see PKCS8EncodedKeySpec
  40  * @see RSAPublicKeySpec
  41  * @see RSAPrivateCrtKeySpec
  42  */
  43 
  44 public class RSAPrivateKeySpec implements KeySpec {
  45 
  46     private BigInteger modulus;
  47     private BigInteger privateExponent;
  48 
  49     /**
  50      * Creates a new RSAPrivateKeySpec.
  51      *
  52      * @param modulus the modulus
  53      * @param privateExponent the private exponent




  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.security.spec;
  27 
  28 import java.math.BigInteger;
  29 
  30 /**
  31  * This class specifies an RSA private key.
  32  *
  33  * @author Jan Luehe
  34  * @since 1.2
  35  *
  36  *
  37  * @see java.security.Key
  38  * @see java.security.KeyFactory
  39  * @see KeySpec
  40  * @see PKCS8EncodedKeySpec
  41  * @see RSAPublicKeySpec
  42  * @see RSAPrivateCrtKeySpec
  43  */
  44 
  45 public class RSAPrivateKeySpec implements KeySpec {
  46 
  47     private BigInteger modulus;
  48     private BigInteger privateExponent;
  49 
  50     /**
  51      * Creates a new RSAPrivateKeySpec.
  52      *
  53      * @param modulus the modulus
  54      * @param privateExponent the private exponent


< prev index next >