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

org.bouncycastle.tls.crypto.TlsMACOutputStream Maven / Gradle / Ivy

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

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

public class TlsMACOutputStream
    extends OutputStream
{
    protected TlsMAC mac;

    public TlsMACOutputStream(TlsMAC mac)
    {
        this.mac = mac;
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy