what-the-bank/sources/org/bouncycastle/crypto/tls/SupplementalDataEntry.java

21 lines
410 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
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;
}
}