11 lines
271 B
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;
|
||
|
}
|