1. /*
  2. * @(#)RSAPublicKey.java 1.6 00/02/02
  3. *
  4. * Copyright 1998-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package java.security.interfaces;
  11. import java.math.BigInteger;
  12. /**
  13. * The interface to an RSA public key.
  14. *
  15. * @author Jan Luehe
  16. *
  17. * @version 1.6 00/02/02
  18. */
  19. public interface RSAPublicKey extends java.security.PublicKey, RSAKey
  20. {
  21. /**
  22. * Returns the public exponent.
  23. *
  24. * @return the public exponent
  25. */
  26. public BigInteger getPublicExponent();
  27. }