aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/jdk1.1/java/security/interfaces/RSAPrivateKey.java
blob: 9b37eef93f34d41a455eb064e14d22ad978f7a74 (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.PrivateKey;

public interface RSAPrivateKey extends PrivateKey 
{
    public static final long serialVersionUID = 6034044314589513430L;

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