File
Doc
Category
Size
Date
Package
RSAKeyParameters.java
API Doc
Azureus 3.0.3.4
589
Tue Jun 08 05:13:00 BST 2004
org.bouncycastle.crypto.params
RSAKeyParameters
java.lang.Object
AsymmetricKeyParameter
public class RSAKeyParameters extends AsymmetricKeyParameter
Fields Summary
private BigInteger
modulus
private BigInteger
exponent
Constructors Summary
public RSAKeyParameters
(
boolean
isPrivate,
BigInteger
modulus,
BigInteger
exponent)
super(isPrivate); this.modulus = modulus; this.exponent = exponent;
Methods Summary
public
java.math.BigInteger
getExponent
()
return exponent;
public
java.math.BigInteger
getModulus
()
return modulus;
Java Code Source