9 lines
136 B
C#
9 lines
136 B
C#
namespace Org.BouncyCastle.Crypto;
|
|
|
|
public interface IBlockResult
|
|
{
|
|
byte[] Collect();
|
|
|
|
int Collect(byte[] destination, int offset);
|
|
}
|