KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > security > interfaces > RSAPublicKey


1 /*
2  * @(#)RSAPublicKey.java 1.10 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package java.security.interfaces;
9
10 import java.math.BigInteger JavaDoc;
11
12 /**
13  * The interface to an RSA public key.
14  *
15  * @author Jan Luehe
16  *
17  * @version 1.10 03/12/19
18  */

19
20 public interface RSAPublicKey extends java.security.PublicKey JavaDoc, RSAKey JavaDoc
21 {
22     static final long serialVersionUID = -8727434096241101194L;
23
24     /**
25      * Returns the public exponent.
26      *
27      * @return the public exponent
28      */

29     public BigInteger JavaDoc getPublicExponent();
30 }
31
Popular Tags