1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-12-26 16:57:59 +01:00

check yubico token length == 44

This commit is contained in:
Kyle Spearrin 2019-07-22 13:59:12 -04:00
parent a2bac9d368
commit 0b249d4dd4

View File

@ -57,7 +57,7 @@ namespace Bit.App.Pages
{ {
var token = (string)message.Data; var token = (string)message.Data;
if(_vm.YubikeyMethod && !string.IsNullOrWhiteSpace(token) && if(_vm.YubikeyMethod && !string.IsNullOrWhiteSpace(token) &&
token.Length > 40 && !token.Contains(" ")) token.Length == 44 && !token.Contains(" "))
{ {
Device.BeginInvokeOnMainThread(async () => Device.BeginInvokeOnMainThread(async () =>
{ {