8 lines
148 B
C#
8 lines
148 B
C#
|
|
namespace SWP.Core
|
|||
|
|
{
|
|||
|
|
public interface ISecureTokenizer
|
|||
|
|
{
|
|||
|
|
string TokenizeText(string word);
|
|||
|
|
bool VerifyToken(string hash, string word);
|
|||
|
|
}
|
|||
|
|
}
|