Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SupplementalDataEntry.java « tls « crypto « bouncycastle « org « java « main « src - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8d054b14f3718605cec843a6bb3ace23b55b3f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.bouncycastle.crypto.tls;

public class SupplementalDataEntry
{

    private int supp_data_type;
    private byte[] data;

    public SupplementalDataEntry(int supp_data_type, byte[] data)
    {
        this.supp_data_type = supp_data_type;
        this.data = data;
    }

    public int getDataType()
    {
        return supp_data_type;
    }

    public byte[] getData()
    {
        return data;
    }
}