18 lines
395 B
C#
18 lines
395 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Akari.Prototype.Server.Services
|
|
{
|
|
public interface IFingerprintManager
|
|
{
|
|
IEnumerable<KeyValuePair<string, string>> FingerprintsHash { get; }
|
|
|
|
bool Remove(string name);
|
|
|
|
void VerifyFingerprint(string name, string token);
|
|
}
|
|
}
|