11 lines
196 B
C#
11 lines
196 B
C#
namespace Org.BouncyCastle.Crypto;
|
|
|
|
public interface ISignerWithRecovery : ISigner
|
|
{
|
|
bool HasFullMessage();
|
|
|
|
byte[] GetRecoveredMessage();
|
|
|
|
void UpdateWithRecoveredMessage(byte[] signature);
|
|
}
|