Files
Toolkit2/Toolkit.Foundation/IEncryptor.cs
T
2024-05-02 20:58:12 +01:00

5 lines
109 B
C#

namespace Toolkit.Foundation;
public interface IEncryptor
{
byte[] Encrypt(byte[] data, byte[] key);
}