1. /*
  2. * @(#)RSAPrivateKey.java 1.7 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 private key.
  14. *
  15. * @author Jan Luehe
  16. *
  17. * @version 1.7 00/02/02
  18. *
  19. * @see RSAPrivateCrtKey
  20. */
  21. public interface RSAPrivateKey extends java.security.PrivateKey, RSAKey
  22. {
  23. /**
  24. * Returns the private exponent.
  25. *
  26. * @return the private exponent
  27. */
  28. public BigInteger getPrivateExponent();
  29. }