org.spongycastle.openssl.X509TrustedCertificateBlock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pkix Show documentation
Show all versions of pkix 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.
package org.spongycastle.openssl;
import java.io.IOException;
import org.spongycastle.asn1.ASN1InputStream;
import org.spongycastle.cert.X509CertificateHolder;
import org.spongycastle.util.Arrays;
/**
* Holder for an OpenSSL trusted certificate block.
*/
public class X509TrustedCertificateBlock
{
private final X509CertificateHolder certificateHolder;
private final CertificateTrustBlock trustBlock;
public X509TrustedCertificateBlock(X509CertificateHolder certificateHolder, CertificateTrustBlock trustBlock)
{
this.certificateHolder = certificateHolder;
this.trustBlock = trustBlock;
}
public X509TrustedCertificateBlock(byte[] encoding)
throws IOException
{
ASN1InputStream aIn = new ASN1InputStream(encoding);
this.certificateHolder = new X509CertificateHolder(aIn.readObject().getEncoded());
this.trustBlock = new CertificateTrustBlock(aIn.readObject().getEncoded());
}
public byte[] getEncoded()
throws IOException
{
return Arrays.concatenate(certificateHolder.getEncoded(), trustBlock.toASN1Sequence().getEncoded());
}
/**
* Return the certificate associated with this Trusted Certificate
*
* @return the certificate holder.
*/
public X509CertificateHolder getCertificateHolder()
{
return certificateHolder;
}
/**
* Return the trust block associated with this Trusted Certificate
*
* @return the trust block.
*/
public CertificateTrustBlock getTrustBlock()
{
return trustBlock;
}
}