7 lines
125 B
C#
7 lines
125 B
C#
namespace Bitvault
|
|
{
|
|
public interface IDecryptor
|
|
{
|
|
string? Decrypt(string cipherText, byte[] key);
|
|
}
|
|
} |