Package java.security.interfaces
Interface RSAPublicKey
-
- All Superinterfaces:
Key,PublicKey,RSAKey,Serializable
- All Known Implementing Classes:
BCRSAPublicKey,JCERSAPublicKey,OpenSSLRSAPublicKey
public interface RSAPublicKey extends PublicKey, RSAKey
The interface for a PKCS#1 RSA public key.
-
-
Field Summary
Fields Modifier and Type Field Description static longserialVersionUIDThe serial version identifier.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BigIntegergetPublicExponent()Returns the public exponente.-
Methods inherited from interface java.security.Key
getAlgorithm, getEncoded, getFormat
-
Methods inherited from interface java.security.interfaces.RSAKey
getModulus
-
-
-
-
Field Detail
-
serialVersionUID
static final long serialVersionUID
The serial version identifier.- See Also:
- Constant Field Values
-
-
Method Detail
-
getPublicExponent
BigInteger getPublicExponent()
Returns the public exponente.- Returns:
- the public exponent
e.
-
-