async Task <bool> CheckRegisteration() { settings = _settingsService.Get(); await Task.Delay(2000); if (Cryptor.Decrypt(settings.Serial) == Finger.Value) { return(true); } return(false); }
public static string GetSerial() { return(Cryptor.Encrypt(Finger.Value)); }
public static bool IsValidSerial(string serial) { return(Finger.Value == Cryptor.Decrypt(serial)); }