1 /*2 * @(#)RSAPublicKey.java 1.10 03/12/193 *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 ;11 12 /**13 * The interface to an RSA public key.14 *15 * @author Jan Luehe16 *17 * @version 1.10 03/12/1918 */19 20 public interface RSAPublicKey extends java.security.PublicKey , RSAKey 21 {22 static final long serialVersionUID = -8727434096241101194L;23 24 /**25 * Returns the public exponent.26 *27 * @return the public exponent28 */29 public BigInteger getPublicExponent();30 }31