blob: 4080aaa98f156e946f03576e61fb7039a7ff4c67 [file] [log] [blame]
package org.bouncycastle.crypto.tls;
public class SupplementalDataEntry
{
protected int dataType;
protected byte[] data;
public SupplementalDataEntry(int dataType, byte[] data)
{
this.dataType = dataType;
this.data = data;
}
public int getDataType()
{
return dataType;
}
public byte[] getData()
{
return data;
}
}