Example usage for org.bouncycastle.jce.provider JCERSAPrivateCrtKey getPrimeExponentQ

List of usage examples for org.bouncycastle.jce.provider JCERSAPrivateCrtKey getPrimeExponentQ

Introduction

In this page you can find the example usage for org.bouncycastle.jce.provider JCERSAPrivateCrtKey getPrimeExponentQ.

Prototype

public BigInteger getPrimeExponentQ() 

Source Link

Document

return the prime exponent for Q.

Usage

From source file:nl.uva.vlet.grid.ssl.PrivateKeyReader.java

License:Apache License

public static byte[] getEncoded(PrivateKey inKey) {
    JCERSAPrivateCrtKey key;
    if (inKey instanceof JCERSAPrivateCrtKey)
        key = (JCERSAPrivateCrtKey) inKey;
    else//from  ww w .  java2s  .  c o m
        throw new IllegalArgumentException((new StringBuilder()).append("Argument was:").append(inKey)
                .append(" Expected: JCERSAPrivateCrtKey").toString());
    ByteArrayOutputStream bOut = new ByteArrayOutputStream();
    DEROutputStream dOut = new DEROutputStream(bOut);
    RSAPrivateKeyStructure info = new RSAPrivateKeyStructure(key.getModulus(), key.getPublicExponent(),
            key.getPrivateExponent(), key.getPrimeP(), key.getPrimeQ(), key.getPrimeExponentP(),
            key.getPrimeExponentQ(), key.getCrtCoefficient());
    try {
        dOut.writeObject(info);
        dOut.close();
    } catch (IOException e) {
        throw new RuntimeException("Error encoding RSA public key");
    }
    return bOut.toByteArray();
}