org.spongycastle.openpgp.jcajce.JcaPGPObjectFactory 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.openpgp.jcajce;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import org.spongycastle.openpgp.PGPObjectFactory;
import org.spongycastle.openpgp.operator.jcajce.JcaKeyFingerprintCalculator;
/**
* {@link PGPObjectFactory} that uses the sources cryptographic primitives from the JCA API.
*/
public class JcaPGPObjectFactory
extends PGPObjectFactory
{
/**
* Construct an object factory to read PGP objects from encoded data.
*
* @param encoded the PGP encoded data.
*/
public JcaPGPObjectFactory(byte[] encoded)
{
this(new ByteArrayInputStream(encoded));
}
/**
* Construct an object factory to read PGP objects from a stream.
*
* @param in the stream containing PGP encoded objects.
*/
public JcaPGPObjectFactory(InputStream in)
{
// FIXME: Convert this to builder style so we can set provider?
super(in, new JcaKeyFingerprintCalculator());
}
}