9 lines
235 B
Java
9 lines
235 B
Java
|
package org.bouncycastle.crypto.tls;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public interface TlsEncryptionCredentials extends TlsCredentials {
|
||
|
byte[] decryptPreMasterSecret(byte[] bArr) throws IOException;
|
||
|
}
|