11 lines
300 B
Java
11 lines
300 B
Java
|
package org.bouncycastle.crypto.tls;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public interface TlsSignerCredentials extends TlsCredentials {
|
||
|
byte[] generateCertificateSignature(byte[] bArr) throws IOException;
|
||
|
|
||
|
SignatureAndHashAlgorithm getSignatureAndHashAlgorithm();
|
||
|
}
|