Files
2024-05-03 19:33:32 +01:00

8 lines
154 B
C#

namespace Toolkit.Foundation;
public interface IEncryptor
{
bool TryEncrypt(byte[] data,
byte[] key,
out byte[]? encryptedData);
}