You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
534 B
26 lines
534 B
using System;
|
|
|
|
namespace Org.BouncyCastle.Crypto.Tls
|
|
{
|
|
public class SupplementalDataEntry
|
|
{
|
|
protected readonly int mDataType;
|
|
protected readonly byte[] mData;
|
|
|
|
public SupplementalDataEntry(int dataType, byte[] data)
|
|
{
|
|
this.mDataType = dataType;
|
|
this.mData = data;
|
|
}
|
|
|
|
public virtual int DataType
|
|
{
|
|
get { return mDataType; }
|
|
}
|
|
|
|
public virtual byte[] Data
|
|
{
|
|
get { return mData; }
|
|
}
|
|
}
|
|
}
|
|
|