7 lines
110 B
C#
7 lines
110 B
C#
namespace Bitvault;
|
|
|
|
public interface IDecryptor
|
|
{
|
|
byte[] Decrypt(byte[] cipher,
|
|
byte[] key);
|
|
} |