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

org.bouncycastle.bcpg.InputStreamPacket Maven / Gradle / Ivy

package org.bouncycastle.bcpg;

/**
 *
 */
public class InputStreamPacket
    extends Packet
{
    private BCPGInputStream        in;
    
    public InputStreamPacket(
        BCPGInputStream  in)
    {
        this.in = in;
    }
    
    /**
     * Note: you can only read from this once...
     *
     * @return the InputStream
     */
    public BCPGInputStream getInputStream()
    {
        return in;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy