OSDN Git Service

0bee88df91c7dba2ddfc29da8deca48c447b51b3
[pf3gnuchains/gcc-fork.git] / libjava / java / security / interfaces / RSAPublicKey.java
1 /* Copyright (C) 2000  Free Software Foundation
2
3    This file is part of libgcj.
4
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
7 details.  */
8  
9 package java.security.interfaces;
10 import java.security.PublicKey;
11 import java.math.BigInteger;
12
13 /**
14  * @author Warren Levy <warrenl@cygnus.com>
15  * @date February 1, 2000.
16  */
17
18 /* Written using on-line Java Platform 1.2 API Specification.
19  * Status:  Believed complete and correct.
20  */
21  
22 // JDK1.2
23 public interface RSAPublicKey extends PublicKey
24 {
25   public BigInteger getModulus();
26   public BigInteger getPublicExponent();
27 }