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