7 lines
101 B
C#
7 lines
101 B
C#
namespace Bitvault;
|
|
|
|
public interface IEncryptor
|
|
{
|
|
|
|
byte[] Encrypt(byte[] data, byte[] key);
|
|
} |