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

10 lines
325 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.crypto.tls;
import java.io.IOException;
import org.bouncycastle.crypto.params.AsymmetricKeyParameter;
/* loaded from: classes6.dex */
public interface TlsAgreementCredentials extends TlsCredentials {
byte[] generateAgreement(AsymmetricKeyParameter asymmetricKeyParameter) throws IOException;
}