1 /* $Id: RSAPrivateKey.java,v 1.4 2000/04/01 01:05:06 gelderen Exp $
2  *
3  * Copyright (C) 1995-2000 The Cryptix Foundation Limited.
4  * All rights reserved.
5  *
6  * Use, modification, copying and distribution of this software is subject
7  * the terms and conditions of the Cryptix General Licence. You should have
8  * received a copy of the Cryptix General Licence along with this library;
9  * if not, you can download a copy from http://www.cryptix.org/ .
10  */
11 package java.security.interfaces;
12 
13 
14 import java.math.BigInteger;
15 import java.security.PrivateKey;
16 
17 
18 /**
19  * @version $Revision: 1.4 $
20  * @author  Jeroen C. van Gelderen (gelderen@cryptix.org)
21  */
22 public interface RSAPrivateKey extends PrivateKey
23 {
getModulus()24     BigInteger getModulus();
getPrivateExponent()25     BigInteger getPrivateExponent();
26 }
27