8 lines
154 B
C#
8 lines
154 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IEncryptor
|
|
{
|
|
bool TryEncrypt(byte[] data,
|
|
byte[] key,
|
|
out byte[]? encryptedData);
|
|
} |