home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / rt.jar / java / security / interfaces / DSAParams.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-04-23  |  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.