aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/jdk1.1/java/security/interfaces/RSAPublicKey.java
blob: 6ae00ec2c395582a7696d9462c93f312bb807253 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package java.security.interfaces;

import java.math.BigInteger;
import java.security.PublicKey;

public interface RSAPublicKey extends PublicKey 
{
    public static final long serialVersionUID = 7187392471159151072L;

    public abstract BigInteger getModulus();
    public abstract BigInteger getPublicExponent();
}