FileDocCategorySizeDatePackage
RSAPrivateKeySpec.javaAPI DocJava SE 5 API1257Fri Aug 26 14:57:18 BST 2005java.security.spec

RSAPrivateKeySpec

public class RSAPrivateKeySpec extends Object implements KeySpec
This class specifies an RSA private key.
author
Jan Luehe
version
1.10 03/12/19
see
java.security.Key
see
java.security.KeyFactory
see
KeySpec
see
PKCS8EncodedKeySpec
see
RSAPublicKeySpec
see
RSAPrivateCrtKeySpec

Fields Summary
private BigInteger
modulus
private BigInteger
privateExponent
Constructors Summary
public RSAPrivateKeySpec(BigInteger modulus, BigInteger privateExponent)
Creates a new RSAPrivateKeySpec.

param
modulus the modulus
param
privateExponent the private exponent

	this.modulus = modulus;
	this.privateExponent = privateExponent;
    
Methods Summary
public java.math.BigIntegergetModulus()
Returns the modulus.

return
the modulus

	return this.modulus;
    
public java.math.BigIntegergetPrivateExponent()
Returns the private exponent.

return
the private exponent

	return this.privateExponent;