1 7 8 package java.security.interfaces; 9 10 import java.math.BigInteger ; 11 12 22 23 public interface RSAPrivateCrtKey extends RSAPrivateKey { 24 25 static final long serialVersionUID = -5682214253527700368L; 26 27 32 public BigInteger getPublicExponent(); 33 34 39 public BigInteger getPrimeP(); 40 41 46 public BigInteger getPrimeQ(); 47 48 53 public BigInteger getPrimeExponentP(); 54 55 60 public BigInteger getPrimeExponentQ(); 61 62 67 public BigInteger getCrtCoefficient(); 68 } 69 | Popular Tags |