org.spongycastle.bcpg.DSASecretBCPGKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pg Show documentation
Show all versions of pg Show documentation
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle
intended for the Android platform. Android unfortunately ships with a stripped-down version of
Bouncy Castle, which prevents easy upgrades - Spongy Castle overcomes this and provides a full,
up-to-date version of the Bouncy Castle cryptographic libs.
The newest version!
package org.spongycastle.bcpg;
import java.io.*;
import java.math.BigInteger;
/**
* base class for a DSA Secret Key.
*/
public class DSASecretBCPGKey
extends BCPGObject implements BCPGKey
{
MPInteger x;
/**
*
* @param in
* @throws IOException
*/
public DSASecretBCPGKey(
BCPGInputStream in)
throws IOException
{
this.x = new MPInteger(in);
}
/**
*
* @param x
*/
public DSASecretBCPGKey(
BigInteger x)
{
this.x = new MPInteger(x);
}
/**
* return "PGP"
*
* @see org.spongycastle.bcpg.BCPGKey#getFormat()
*/
public String getFormat()
{
return "PGP";
}
/**
* return the standard PGP encoding of the key.
*
* @see org.spongycastle.bcpg.BCPGKey#getEncoded()
*/
public byte[] getEncoded()
{
try
{
return super.getEncoded();
}
catch (IOException e)
{
return null;
}
}
public void encode(
BCPGOutputStream out)
throws IOException
{
out.writeObject(x);
}
/**
* @return x
*/
public BigInteger getX()
{
return x.getValue();
}
}