1. /*
  2. * @(#)RSAPrivateKey.java 1.11 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 private key.
  11. *
  12. * @author Jan Luehe
  13. *
  14. * @version 1.11 03/12/19
  15. *
  16. * @see RSAPrivateCrtKey
  17. */
  18. public interface RSAPrivateKey extends java.security.PrivateKey, RSAKey
  19. {
  20. static final long serialVersionUID = 5187144804936595022L;
  21. /**
  22. * Returns the private exponent.
  23. *
  24. * @return the private exponent
  25. */
  26. public BigInteger getPrivateExponent();
  27. }