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 / RSAPrivateCrtKey.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  318 b   |  18 lines

  1. package java.security.interfaces;
  2.  
  3. import java.math.BigInteger;
  4.  
  5. public interface RSAPrivateCrtKey extends RSAPrivateKey {
  6.    BigInteger getPublicExponent();
  7.  
  8.    BigInteger getPrimeP();
  9.  
  10.    BigInteger getPrimeQ();
  11.  
  12.    BigInteger getPrimeExponentP();
  13.  
  14.    BigInteger getPrimeExponentQ();
  15.  
  16.    BigInteger getCrtCoefficient();
  17. }
  18.