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