- /*
 - * @(#)RSAPublicKey.java 1.4 01/11/29
 - *
 - * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
 - * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 - */
 - package java.security.interfaces;
 - import java.math.BigInteger;
 - /**
 - * The interface to an RSA public key.
 - *
 - * @author Jan Luehe
 - *
 - * @version 1.4 01/11/29
 - */
 - public interface RSAPublicKey extends java.security.PublicKey {
 - /**
 - * Returns the modulus.
 - *
 - * @return the modulus
 - */
 - public BigInteger getModulus();
 - /**
 - * Returns the public exponent.
 - *
 - * @return the public exponent
 - */
 - public BigInteger getPublicExponent();
 - }