org.bouncycastle.cert.crmf.CRMFUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcmail Show documentation
Show all versions of bcmail Show documentation
A patched bouncycastle-mail
The newest version!
package org.bouncycastle.cert.crmf;
import java.io.IOException;
import java.io.OutputStream;
import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.DEROutputStream;
class CRMFUtil
{
static void derEncodeToStream(ASN1Encodable obj, OutputStream stream)
{
DEROutputStream dOut = new DEROutputStream(stream);
try
{
dOut.writeObject(obj);
dOut.close();
}
catch (IOException e)
{
throw new CRMFRuntimeException("unable to DER encode object: " + e.getMessage(), e);
}
}
}