what-the-bank/sources/org/bouncycastle/crypto/SignerWithRecovery.java

11 lines
271 B
Java

package org.bouncycastle.crypto;
/* loaded from: classes6.dex */
public interface SignerWithRecovery extends Signer {
byte[] getRecoveredMessage();
boolean hasFullMessage();
void updateWithRecoveredMessage(byte[] bArr) throws InvalidCipherTextException;
}