All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gatling.recorder.internal.bouncycastle.cms.PKCS7TypedStream Maven / Gradle / Ivy

package io.gatling.recorder.internal.bouncycastle.cms;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;

import io.gatling.recorder.internal.bouncycastle.asn1.ASN1Encodable;
import io.gatling.recorder.internal.bouncycastle.asn1.ASN1Encoding;
import io.gatling.recorder.internal.bouncycastle.asn1.ASN1ObjectIdentifier;

public class PKCS7TypedStream
    extends CMSTypedStream
{
    private final ASN1Encodable content;

    public PKCS7TypedStream(ASN1ObjectIdentifier oid, ASN1Encodable encodable)
        throws IOException
    {
        super(oid);

        content = encodable;
    }

    public ASN1Encodable getContent()
    {
        return content;
    }

    public InputStream getContentStream()
    {
        try
        {
            return getContentStream(content);
        }
        catch (IOException e)
        {
            throw new CMSRuntimeException("unable to convert content to stream: " + e.getMessage(), e);
        }
    }

    public void drain()
        throws IOException
    {
        content.toASN1Primitive(); // this will parse in the data
    }

    private InputStream getContentStream(ASN1Encodable encodable)
        throws IOException
    {
        byte[] encoded = encodable.toASN1Primitive().getEncoded(ASN1Encoding.DER);
        int index = 0;
        // Skip tag
        if ((encoded[index++] & 0x1F) == 0x1F)
        {
            while ((encoded[index++] & 0x80) != 0)
            {
            }
        }
        // Skip definite-length
        int dl = encoded[index++];
        if ((dl & 0x80) != 0)
        {
            index += (dl & 0x7F);
        }

        return new ByteArrayInputStream(encoded, index, encoded.length - index);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy