21 lines
410 B
Java
21 lines
410 B
Java
|
package org.bouncycastle.crypto.tls;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class SupplementalDataEntry {
|
||
|
protected byte[] data;
|
||
|
protected int dataType;
|
||
|
|
||
|
public int getDataType() {
|
||
|
return this.dataType;
|
||
|
}
|
||
|
|
||
|
public byte[] getData() {
|
||
|
return this.data;
|
||
|
}
|
||
|
|
||
|
public SupplementalDataEntry(int i, byte[] bArr) {
|
||
|
this.dataType = i;
|
||
|
this.data = bArr;
|
||
|
}
|
||
|
}
|