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

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

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

public final class TlsEncodeResult
{
    public final byte[] buf;
    public final int off, len;
    public final short recordType;

    public TlsEncodeResult(byte[] buf, int off, int len, short recordType)
    {
        this.buf = buf;
        this.off = off;
        this.len = len;
        this.recordType = recordType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy