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. package java.security.interfaces;
  8. import java.math.BigInteger;
  9. /**
  10. * The interface to an RSA public key.
  11. *
  12. * @author Jan Luehe
  13. *
  14. * @version 1.10 03/12/19
  15. */
  16. public interface RSAPublicKey extends java.security.PublicKey, RSAKey
  17. {
  18. static final long serialVersionUID = -8727434096241101194L;
  19. /**
  20. * Returns the public exponent.
  21. *
  22. * @return the public exponent
  23. */
  24. public BigInteger getPublicExponent();
  25. }