11 lines
228 B
C#
11 lines
228 B
C#
namespace VAR.Toolbox.Code.TextCoders
|
|
{
|
|
public interface ITextCoder : INamed
|
|
{
|
|
bool NeedsKey { get; }
|
|
|
|
string Encode(string input, string key);
|
|
string Decode(string input, string key);
|
|
}
|
|
}
|