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 / DSAParams.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  267 b   |  12 lines

  1. package java.security.interfaces;
  2.  
  3. import java.math.BigInteger;
  4.  
  5. public interface DSAParams {
  6.    BigInteger getP();
  7.  
  8.    BigInteger getQ();
  9.  
  10.    BigInteger getG();
  11. }
  12.