home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VPage / Java.bin / CLASSES.ZIP / java / security / interfaces / DSAPrivateKey.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  316 b   |  9 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.    BigInteger getX();
  8. }
  9.