home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / security / interfaces / DSAPrivateKey.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  267 b   |  11 lines

  1. package java.security.interfaces;
  2.  
  3. import java.math.BigInteger;
  4. import java.security.PrivateKey;
  5.  
  6. public interface DSAPrivateKey extends DSAKey, PrivateKey {
  7.    long serialVersionUID = 7776497482533790279L;
  8.  
  9.    BigInteger getX();
  10. }
  11.