PlanTempusApp/PlanTempus.Core/ISecureTokenizer.cs

8 lines
155 B
C#
Raw Permalink Normal View History

2025-03-04 17:13:02 +01:00
namespace PlanTempus.Core
{
public interface ISecureTokenizer
{
string TokenizeText(string word);
bool VerifyToken(string hash, string word);
}
}