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

org.bouncycastle.tls.TlsOutputStream Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package org.bouncycastle.tls;

import java.io.IOException;
import java.io.OutputStream;

/**
 * An OutputStream for a TLS connection.
 */
class TlsOutputStream extends OutputStream
{
    private final TlsProtocol handler;

    TlsOutputStream(TlsProtocol handler)
    {
        this.handler = handler;
    }

    public void write(int b) throws IOException
    {
        write(new byte[]{ (byte)b }, 0, 1);
    }

    public void write(byte buf[], int off, int len) throws IOException
    {
        handler.writeApplicationData(buf, off, len);
    }

    public void close() throws IOException
    {
        handler.close();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy