mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-22 08:22:16 +03:00
Merge PR #1599
This commit is contained in:
commit
848605c855
@ -47,7 +47,7 @@ import com.yubico.authenticator.management.ManagementHandler
|
|||||||
import com.yubico.authenticator.oath.AppLinkMethodChannel
|
import com.yubico.authenticator.oath.AppLinkMethodChannel
|
||||||
import com.yubico.authenticator.oath.OathManager
|
import com.yubico.authenticator.oath.OathManager
|
||||||
import com.yubico.authenticator.oath.OathViewModel
|
import com.yubico.authenticator.oath.OathViewModel
|
||||||
import com.yubico.authenticator.yubikit.getDeviceInfo
|
import com.yubico.authenticator.yubikit.DeviceInfoHelper.Companion.getDeviceInfo
|
||||||
import com.yubico.authenticator.yubikit.withConnection
|
import com.yubico.authenticator.yubikit.withConnection
|
||||||
import com.yubico.yubikit.android.YubiKitManager
|
import com.yubico.yubikit.android.YubiKitManager
|
||||||
import com.yubico.yubikit.android.transport.nfc.NfcConfiguration
|
import com.yubico.yubikit.android.transport.nfc.NfcConfiguration
|
||||||
@ -57,7 +57,6 @@ import com.yubico.yubikit.android.transport.usb.UsbConfiguration
|
|||||||
import com.yubico.yubikit.core.Transport
|
import com.yubico.yubikit.core.Transport
|
||||||
import com.yubico.yubikit.core.YubiKeyDevice
|
import com.yubico.yubikit.core.YubiKeyDevice
|
||||||
import com.yubico.yubikit.core.smartcard.SmartCardConnection
|
import com.yubico.yubikit.core.smartcard.SmartCardConnection
|
||||||
import com.yubico.yubikit.core.smartcard.scp.KeyRef
|
|
||||||
import com.yubico.yubikit.core.smartcard.scp.Scp11KeyParams
|
import com.yubico.yubikit.core.smartcard.scp.Scp11KeyParams
|
||||||
import com.yubico.yubikit.core.smartcard.scp.ScpKeyParams
|
import com.yubico.yubikit.core.smartcard.scp.ScpKeyParams
|
||||||
import com.yubico.yubikit.core.smartcard.scp.ScpKid
|
import com.yubico.yubikit.core.smartcard.scp.ScpKid
|
||||||
@ -124,7 +123,7 @@ class MainActivity : FlutterFragmentActivity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
hasNfc = true
|
hasNfc = true
|
||||||
} catch (e: NfcNotAvailable) {
|
} catch (_: NfcNotAvailable) {
|
||||||
hasNfc = false
|
hasNfc = false
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -320,7 +319,7 @@ class MainActivity : FlutterFragmentActivity() {
|
|||||||
switchContext(preferredContext)
|
switchContext(preferredContext)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (contextManager == null) {
|
if (contextManager == null && supportedContexts.isNotEmpty()) {
|
||||||
switchContext(DeviceManager.getPreferredContext(supportedContexts))
|
switchContext(DeviceManager.getPreferredContext(supportedContexts))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,3 +1,19 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2023-2024 Yubico.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
package com.yubico.authenticator.device
|
package com.yubico.authenticator.device
|
||||||
|
|
||||||
import com.yubico.yubikit.core.Transport
|
import com.yubico.yubikit.core.Transport
|
||||||
@ -17,7 +33,7 @@ val UnknownDevice = Info(
|
|||||||
isLocked = false,
|
isLocked = false,
|
||||||
isSky = false,
|
isSky = false,
|
||||||
isFips = false,
|
isFips = false,
|
||||||
name = "Unrecognized device",
|
name = "unknown-device",
|
||||||
isNfc = false,
|
isNfc = false,
|
||||||
usbPid = null,
|
usbPid = null,
|
||||||
pinComplexity = false,
|
pinComplexity = false,
|
||||||
@ -50,4 +66,15 @@ fun unknownFido2DeviceInfo(transport: Transport) : Info {
|
|||||||
return unknownDeviceWithCapability(transport, Capability.FIDO2.bit).copy(
|
return unknownDeviceWithCapability(transport, Capability.FIDO2.bit).copy(
|
||||||
name = "FIDO2 device"
|
name = "FIDO2 device"
|
||||||
)
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun restrictedNfcDeviceInfo(transport: Transport) : Info {
|
||||||
|
if (transport != Transport.NFC) {
|
||||||
|
return UnknownDevice
|
||||||
|
}
|
||||||
|
|
||||||
|
return UnknownDevice.copy(
|
||||||
|
isNfc = true,
|
||||||
|
name = "restricted-nfc"
|
||||||
|
)
|
||||||
}
|
}
|
@ -42,7 +42,7 @@ import com.yubico.authenticator.oath.keystore.ClearingMemProvider
|
|||||||
import com.yubico.authenticator.oath.keystore.KeyProvider
|
import com.yubico.authenticator.oath.keystore.KeyProvider
|
||||||
import com.yubico.authenticator.oath.keystore.KeyStoreProvider
|
import com.yubico.authenticator.oath.keystore.KeyStoreProvider
|
||||||
import com.yubico.authenticator.oath.keystore.SharedPrefProvider
|
import com.yubico.authenticator.oath.keystore.SharedPrefProvider
|
||||||
import com.yubico.authenticator.yubikit.getDeviceInfo
|
import com.yubico.authenticator.yubikit.DeviceInfoHelper.Companion.getDeviceInfo
|
||||||
import com.yubico.authenticator.yubikit.withConnection
|
import com.yubico.authenticator.yubikit.withConnection
|
||||||
import com.yubico.yubikit.android.transport.nfc.NfcYubiKeyDevice
|
import com.yubico.yubikit.android.transport.nfc.NfcYubiKeyDevice
|
||||||
import com.yubico.yubikit.android.transport.usb.UsbYubiKeyDevice
|
import com.yubico.yubikit.android.transport.usb.UsbYubiKeyDevice
|
||||||
|
@ -16,8 +16,9 @@
|
|||||||
|
|
||||||
package com.yubico.authenticator.yubikit
|
package com.yubico.authenticator.yubikit
|
||||||
|
|
||||||
import com.yubico.authenticator.device.Info
|
|
||||||
import com.yubico.authenticator.compatUtil
|
import com.yubico.authenticator.compatUtil
|
||||||
|
import com.yubico.authenticator.device.Info
|
||||||
|
import com.yubico.authenticator.device.restrictedNfcDeviceInfo
|
||||||
import com.yubico.authenticator.device.unknownDeviceWithCapability
|
import com.yubico.authenticator.device.unknownDeviceWithCapability
|
||||||
import com.yubico.authenticator.device.unknownFido2DeviceInfo
|
import com.yubico.authenticator.device.unknownFido2DeviceInfo
|
||||||
import com.yubico.authenticator.device.unknownOathDeviceInfo
|
import com.yubico.authenticator.device.unknownOathDeviceInfo
|
||||||
@ -27,58 +28,98 @@ import com.yubico.yubikit.core.YubiKeyDevice
|
|||||||
import com.yubico.yubikit.core.application.ApplicationNotAvailableException
|
import com.yubico.yubikit.core.application.ApplicationNotAvailableException
|
||||||
import com.yubico.yubikit.core.fido.FidoConnection
|
import com.yubico.yubikit.core.fido.FidoConnection
|
||||||
import com.yubico.yubikit.core.otp.OtpConnection
|
import com.yubico.yubikit.core.otp.OtpConnection
|
||||||
|
import com.yubico.yubikit.core.smartcard.Apdu
|
||||||
import com.yubico.yubikit.core.smartcard.SmartCardConnection
|
import com.yubico.yubikit.core.smartcard.SmartCardConnection
|
||||||
|
import com.yubico.yubikit.core.smartcard.SmartCardProtocol
|
||||||
import com.yubico.yubikit.fido.ctap.Ctap2Session
|
import com.yubico.yubikit.fido.ctap.Ctap2Session
|
||||||
import com.yubico.yubikit.management.DeviceInfo
|
import com.yubico.yubikit.management.DeviceInfo
|
||||||
import com.yubico.yubikit.oath.OathSession
|
import com.yubico.yubikit.oath.OathSession
|
||||||
import com.yubico.yubikit.support.DeviceUtil
|
import com.yubico.yubikit.support.DeviceUtil
|
||||||
|
|
||||||
import org.slf4j.LoggerFactory
|
import org.slf4j.LoggerFactory
|
||||||
|
|
||||||
suspend fun getDeviceInfo(device: YubiKeyDevice): Info? {
|
class DeviceInfoHelper {
|
||||||
val pid = (device as? UsbYubiKeyDevice)?.pid
|
companion object {
|
||||||
val logger = LoggerFactory.getLogger("getDeviceInfo")
|
private val logger = LoggerFactory.getLogger("DeviceInfoHelper")
|
||||||
|
private val nfcTagReaderAid = byteArrayOf(0xD2.toByte(), 0x76, 0, 0, 0x85.toByte(), 1, 1)
|
||||||
|
private val uri = "yubico.com/getting-started".toByteArray()
|
||||||
|
private val restrictedNfcBytes =
|
||||||
|
byteArrayOf(0x00, 0x1F, 0xD1.toByte(), 0x01, 0x1b, 0x55, 0x04) + uri
|
||||||
|
|
||||||
val deviceInfo = runCatching {
|
suspend fun getDeviceInfo(device: YubiKeyDevice): Info? {
|
||||||
device.withConnection<SmartCardConnection, DeviceInfo> { DeviceUtil.readInfo(it, pid) }
|
val pid = (device as? UsbYubiKeyDevice)?.pid
|
||||||
}.recoverCatching { t ->
|
|
||||||
logger.debug("Smart card connection not available: {}", t.message)
|
|
||||||
device.withConnection<OtpConnection, DeviceInfo> { DeviceUtil.readInfo(it, pid) }
|
val deviceInfo = runCatching {
|
||||||
}.recoverCatching { t ->
|
device.withConnection<SmartCardConnection, DeviceInfo> {
|
||||||
logger.debug("OTP connection not available: {}", t.message)
|
DeviceUtil.readInfo(
|
||||||
device.withConnection<FidoConnection, DeviceInfo> { DeviceUtil.readInfo(it, pid) }
|
it,
|
||||||
}.recoverCatching { t ->
|
pid
|
||||||
logger.debug("FIDO connection not available: {}", t.message)
|
)
|
||||||
return SkyHelper(compatUtil).getDeviceInfo(device)
|
}
|
||||||
}.getOrElse {
|
}.recoverCatching { t ->
|
||||||
// this is not a YubiKey
|
logger.debug("Smart card connection not available: {}", t.message)
|
||||||
logger.debug("Probing unknown device")
|
device.withConnection<OtpConnection, DeviceInfo> { DeviceUtil.readInfo(it, pid) }
|
||||||
try {
|
}.recoverCatching { t ->
|
||||||
device.openConnection(SmartCardConnection::class.java).use { smartCardConnection ->
|
logger.debug("OTP connection not available: {}", t.message)
|
||||||
|
device.withConnection<FidoConnection, DeviceInfo> { DeviceUtil.readInfo(it, pid) }
|
||||||
|
}.recoverCatching { t ->
|
||||||
|
logger.debug("FIDO connection not available: {}", t.message)
|
||||||
|
return SkyHelper(compatUtil).getDeviceInfo(device)
|
||||||
|
}.getOrElse {
|
||||||
|
// this is not a YubiKey
|
||||||
|
logger.debug("Probing unknown device")
|
||||||
try {
|
try {
|
||||||
// if OATH session is available use it
|
device.openConnection(SmartCardConnection::class.java)
|
||||||
OathSession(smartCardConnection)
|
.use { smartCardConnection ->
|
||||||
logger.debug("Device supports OATH")
|
try {
|
||||||
return unknownOathDeviceInfo(device.transport)
|
// if OATH session is available use it
|
||||||
} catch (applicationNotAvailable: ApplicationNotAvailableException) {
|
OathSession(smartCardConnection)
|
||||||
try {
|
logger.debug("Device supports OATH")
|
||||||
// probe for CTAP2 availability
|
return unknownOathDeviceInfo(device.transport)
|
||||||
Ctap2Session(smartCardConnection)
|
} catch (_: ApplicationNotAvailableException) {
|
||||||
logger.debug("Device supports FIDO2")
|
try {
|
||||||
return unknownFido2DeviceInfo(device.transport)
|
// probe for CTAP2 availability
|
||||||
} catch (applicationNotAvailable: ApplicationNotAvailableException) {
|
Ctap2Session(smartCardConnection)
|
||||||
logger.debug("Device not recognized")
|
logger.debug("Device supports FIDO2")
|
||||||
return unknownDeviceWithCapability(device.transport)
|
return unknownFido2DeviceInfo(device.transport)
|
||||||
}
|
} catch (_: ApplicationNotAvailableException) {
|
||||||
|
// probe for NFC restricted device
|
||||||
|
if (isNfcRestricted(smartCardConnection)) {
|
||||||
|
logger.debug("Device has restricted NFC")
|
||||||
|
return restrictedNfcDeviceInfo(device.transport)
|
||||||
|
}
|
||||||
|
logger.debug("Device not recognized")
|
||||||
|
return unknownDeviceWithCapability(device.transport)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
// no smart card connectivity
|
||||||
|
logger.error("Failure getting device info", e)
|
||||||
|
return null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
val name = DeviceUtil.getName(deviceInfo, pid?.type)
|
||||||
|
return Info(name, device is NfcYubiKeyDevice, pid?.value, deviceInfo)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun isNfcRestricted(connection: SmartCardConnection): Boolean =
|
||||||
|
restrictedNfcBytes.contentEquals(readNdef(connection).also {
|
||||||
|
logger.debug("ndef: {}", it)
|
||||||
|
})
|
||||||
|
|
||||||
|
private fun readNdef(connection: SmartCardConnection): ByteArray? = try {
|
||||||
|
with(SmartCardProtocol(connection)) {
|
||||||
|
select(nfcTagReaderAid)
|
||||||
|
sendAndReceive(Apdu(0x00, 0xA4, 0x00, 0x0C, byteArrayOf(0xE1.toByte(), 0x04)))
|
||||||
|
sendAndReceive(Apdu(0x00, 0xB0, 0x00, 0x00, null))
|
||||||
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
// no smart card connectivity
|
logger.debug("Failed to read ndef tag: ", e)
|
||||||
logger.error("Failure getting device info", e)
|
null
|
||||||
return null
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val name = DeviceUtil.getName(deviceInfo, pid?.type)
|
|
||||||
return Info(name, device is NfcYubiKeyDevice, pid?.value, deviceInfo)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,7 +32,13 @@ from ykman.device import scan_devices, list_all_devices
|
|||||||
from ykman.diagnostics import get_diagnostics
|
from ykman.diagnostics import get_diagnostics
|
||||||
from ykman.logging import set_log_level
|
from ykman.logging import set_log_level
|
||||||
from yubikit.core import TRANSPORT, NotSupportedError
|
from yubikit.core import TRANSPORT, NotSupportedError
|
||||||
from yubikit.core.smartcard import SmartCardConnection, ApduError, SW
|
from yubikit.core.smartcard import (
|
||||||
|
SmartCardConnection,
|
||||||
|
ApduError,
|
||||||
|
SW,
|
||||||
|
SmartCardProtocol,
|
||||||
|
ApplicationNotAvailableError,
|
||||||
|
)
|
||||||
from yubikit.core.smartcard.scp import Scp11KeyParams
|
from yubikit.core.smartcard.scp import Scp11KeyParams
|
||||||
from yubikit.core.otp import OtpConnection
|
from yubikit.core.otp import OtpConnection
|
||||||
from yubikit.core.fido import FidoConnection
|
from yubikit.core.fido import FidoConnection
|
||||||
@ -376,6 +382,9 @@ class _ReaderObserver(CardObserver):
|
|||||||
logger.debug(f"NFC card: {self.card}")
|
logger.debug(f"NFC card: {self.card}")
|
||||||
|
|
||||||
|
|
||||||
|
RESTRICTED_NDEF = bytes.fromhex("001fd1011b5504") + b"yubico.com/getting-started"
|
||||||
|
|
||||||
|
|
||||||
class ReaderDeviceNode(AbstractDeviceNode):
|
class ReaderDeviceNode(AbstractDeviceNode):
|
||||||
def __init__(self, device, info):
|
def __init__(self, device, info):
|
||||||
super().__init__(device, info)
|
super().__init__(device, info)
|
||||||
@ -398,14 +407,27 @@ class ReaderDeviceNode(AbstractDeviceNode):
|
|||||||
return dict(present=False, status="no-card")
|
return dict(present=False, status="no-card")
|
||||||
try:
|
try:
|
||||||
with self._device.open_connection(SmartCardConnection) as conn:
|
with self._device.open_connection(SmartCardConnection) as conn:
|
||||||
data = dict(self._read_data(conn), present=True)
|
try:
|
||||||
|
data = dict(self._read_data(conn), present=True)
|
||||||
|
except ValueError:
|
||||||
|
# Unknown device, maybe NFC restricted
|
||||||
|
try:
|
||||||
|
p = SmartCardProtocol(conn)
|
||||||
|
p.select(bytes.fromhex("D2760000850101"))
|
||||||
|
p.send_apdu(0, 0xA4, 0x00, 0x0C, bytes.fromhex("E104"))
|
||||||
|
ndef = p.send_apdu(0, 0xB0, 0, 0)
|
||||||
|
except (ApduError, ApplicationNotAvailableError):
|
||||||
|
ndef = None
|
||||||
|
|
||||||
|
if ndef == RESTRICTED_NDEF:
|
||||||
|
data = dict(present=False, status="restricted-nfc")
|
||||||
|
else:
|
||||||
|
data = dict(present=False, status="unknown-device")
|
||||||
|
|
||||||
self._observer.needs_refresh = False
|
self._observer.needs_refresh = False
|
||||||
return data
|
return data
|
||||||
except NoCardException:
|
except NoCardException:
|
||||||
return dict(present=False, status="no-card")
|
return dict(present=False, status="no-card")
|
||||||
except ValueError:
|
|
||||||
self._observer.needs_refresh = False
|
|
||||||
return dict(present=False, status="unknown-device")
|
|
||||||
|
|
||||||
@action(closes_child=False)
|
@action(closes_child=False)
|
||||||
def get(self, params, event, signal):
|
def get(self, params, event, signal):
|
||||||
|
@ -157,8 +157,18 @@ class AndroidAttachedDevicesNotifier extends AttachedDevicesNotifier {
|
|||||||
.maybeWhen(data: (data) => [data.node], orElse: () => []);
|
.maybeWhen(data: (data) => [data.node], orElse: () => []);
|
||||||
}
|
}
|
||||||
|
|
||||||
final androidDeviceDataProvider = Provider<AsyncValue<YubiKeyData>>(
|
final androidDeviceDataProvider = Provider<AsyncValue<YubiKeyData>>((ref) {
|
||||||
(ref) => ref.watch(androidYubikeyProvider));
|
return ref.watch(androidYubikeyProvider).when(data: (d) {
|
||||||
|
if (d.name == 'restricted-nfc' || d.name == 'unknown-device') {
|
||||||
|
return AsyncError(d.name, StackTrace.current);
|
||||||
|
}
|
||||||
|
return AsyncData(d);
|
||||||
|
}, error: (Object error, StackTrace stackTrace) {
|
||||||
|
return AsyncError(error, stackTrace);
|
||||||
|
}, loading: () {
|
||||||
|
return const AsyncLoading();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
class AndroidCurrentDeviceNotifier extends CurrentDeviceNotifier {
|
class AndroidCurrentDeviceNotifier extends CurrentDeviceNotifier {
|
||||||
@override
|
@override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2022 Yubico.
|
* Copyright (C) 2022-2024 Yubico.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@ -78,6 +78,17 @@ class DeviceErrorScreen extends ConsumerWidget {
|
|||||||
),
|
),
|
||||||
header: l10n.s_unknown_device,
|
header: l10n.s_unknown_device,
|
||||||
),
|
),
|
||||||
|
'restricted-nfc' => HomeMessagePage(
|
||||||
|
centered: true,
|
||||||
|
graphic: Icon(
|
||||||
|
Symbols.contactless,
|
||||||
|
size: 96,
|
||||||
|
color: Theme.of(context).colorScheme.tertiary,
|
||||||
|
),
|
||||||
|
header: l10n.l_deactivate_restricted_nfc,
|
||||||
|
message: l10n.p_deactivate_restricted_nfc_desc,
|
||||||
|
footnote: l10n.p_deactivate_restricted_nfc_footer,
|
||||||
|
),
|
||||||
_ => HomeMessagePage(
|
_ => HomeMessagePage(
|
||||||
centered: true,
|
centered: true,
|
||||||
graphic: Image.asset(
|
graphic: Image.asset(
|
||||||
|
@ -155,6 +155,7 @@ List<String> _getDeviceStrings(
|
|||||||
error: (error, _) => switch (error) {
|
error: (error, _) => switch (error) {
|
||||||
'device-inaccessible' => [node.name, l10n.s_yk_inaccessible],
|
'device-inaccessible' => [node.name, l10n.s_yk_inaccessible],
|
||||||
'unknown-device' => [l10n.s_unknown_device],
|
'unknown-device' => [l10n.s_unknown_device],
|
||||||
|
'restricted-nfc' => [l10n.s_restricted_nfc],
|
||||||
_ => null,
|
_ => null,
|
||||||
},
|
},
|
||||||
) ??
|
) ??
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2022-2023 Yubico.
|
* Copyright (C) 2022-2024 Yubico.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@ -119,19 +119,7 @@ class MainPage extends ConsumerWidget {
|
|||||||
data: (data) {
|
data: (data) {
|
||||||
final section = ref.watch(currentSectionProvider);
|
final section = ref.watch(currentSectionProvider);
|
||||||
final capabilities = section.capabilities;
|
final capabilities = section.capabilities;
|
||||||
if (data.info.supportedCapabilities.isEmpty &&
|
if (section.getAvailability(data) == Availability.unsupported) {
|
||||||
data.name == 'Unrecognized device') {
|
|
||||||
return HomeMessagePage(
|
|
||||||
centered: true,
|
|
||||||
graphic: Icon(
|
|
||||||
Symbols.help,
|
|
||||||
size: 96,
|
|
||||||
color: Theme.of(context).colorScheme.error,
|
|
||||||
),
|
|
||||||
header: l10n.s_yk_not_recognized,
|
|
||||||
);
|
|
||||||
} else if (section.getAvailability(data) ==
|
|
||||||
Availability.unsupported) {
|
|
||||||
return MessagePage(
|
return MessagePage(
|
||||||
title: section.getDisplayName(l10n),
|
title: section.getDisplayName(l10n),
|
||||||
capabilities: capabilities,
|
capabilities: capabilities,
|
||||||
|
@ -76,7 +76,7 @@ class MessagePage extends StatelessWidget {
|
|||||||
right: 18.0,
|
right: 18.0,
|
||||||
bottom: centered && actionsBuilder == null ? 96 : 0),
|
bottom: centered && actionsBuilder == null ? 96 : 0),
|
||||||
child: SizedBox(
|
child: SizedBox(
|
||||||
width: centered ? 250 : 350,
|
width: 350,
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: centered
|
crossAxisAlignment: centered
|
||||||
? CrossAxisAlignment.center
|
? CrossAxisAlignment.center
|
||||||
@ -93,7 +93,7 @@ class MessagePage extends StatelessWidget {
|
|||||||
if (message != null) ...[
|
if (message != null) ...[
|
||||||
const SizedBox(height: 12.0),
|
const SizedBox(height: 12.0),
|
||||||
Container(
|
Container(
|
||||||
constraints: const BoxConstraints(maxWidth: 300),
|
constraints: const BoxConstraints(maxWidth: 350),
|
||||||
child: Text(message!,
|
child: Text(message!,
|
||||||
textAlign: centered ? TextAlign.center : TextAlign.left,
|
textAlign: centered ? TextAlign.center : TextAlign.left,
|
||||||
style: Theme.of(context).textTheme.titleSmall?.apply(
|
style: Theme.of(context).textTheme.titleSmall?.apply(
|
||||||
|
@ -229,6 +229,10 @@
|
|||||||
"l_no_yk_present": "Kein YubiKey vorhanden",
|
"l_no_yk_present": "Kein YubiKey vorhanden",
|
||||||
"s_unknown_type": "Unbekannter Typ",
|
"s_unknown_type": "Unbekannter Typ",
|
||||||
"s_unknown_device": "Unbekanntes Gerät",
|
"s_unknown_device": "Unbekanntes Gerät",
|
||||||
|
"s_restricted_nfc": null,
|
||||||
|
"l_deactivate_restricted_nfc": null,
|
||||||
|
"p_deactivate_restricted_nfc_desc": null,
|
||||||
|
"p_deactivate_restricted_nfc_footer": null,
|
||||||
"s_unsupported_yk": "Nicht unterstützter YubiKey",
|
"s_unsupported_yk": "Nicht unterstützter YubiKey",
|
||||||
"s_yk_not_recognized": "Geräte nicht erkannt",
|
"s_yk_not_recognized": "Geräte nicht erkannt",
|
||||||
"p_operation_failed_try_again": "Die Aktion ist fehlgeschlagen, bitte versuchen Sie es erneut.",
|
"p_operation_failed_try_again": "Die Aktion ist fehlgeschlagen, bitte versuchen Sie es erneut.",
|
||||||
|
@ -229,6 +229,10 @@
|
|||||||
"l_no_yk_present": "No YubiKey present",
|
"l_no_yk_present": "No YubiKey present",
|
||||||
"s_unknown_type": "Unknown type",
|
"s_unknown_type": "Unknown type",
|
||||||
"s_unknown_device": "Unrecognized device",
|
"s_unknown_device": "Unrecognized device",
|
||||||
|
"s_restricted_nfc": "NFC activation",
|
||||||
|
"l_deactivate_restricted_nfc": "How to activate NFC",
|
||||||
|
"p_deactivate_restricted_nfc_desc": "Connect your YubiKey to any USB power source, such as a computer, for at least 3 seconds.\n\nOnce powered, NFC will be activated and ready for use.",
|
||||||
|
"p_deactivate_restricted_nfc_footer": "Your YubiKey is equipped with Restricted NFC, a feature designed to safeguard against wireless manipulation during shipping. This means that NFC operations are temporarily disabled until you activate them.",
|
||||||
"s_unsupported_yk": "Unsupported YubiKey",
|
"s_unsupported_yk": "Unsupported YubiKey",
|
||||||
"s_yk_not_recognized": "Device not recognized",
|
"s_yk_not_recognized": "Device not recognized",
|
||||||
"p_operation_failed_try_again": "The operation failed, please try again.",
|
"p_operation_failed_try_again": "The operation failed, please try again.",
|
||||||
|
@ -229,6 +229,10 @@
|
|||||||
"l_no_yk_present": "Aucune YubiKey présente",
|
"l_no_yk_present": "Aucune YubiKey présente",
|
||||||
"s_unknown_type": "Type inconnu",
|
"s_unknown_type": "Type inconnu",
|
||||||
"s_unknown_device": "Appareil non reconnu",
|
"s_unknown_device": "Appareil non reconnu",
|
||||||
|
"s_restricted_nfc": null,
|
||||||
|
"l_deactivate_restricted_nfc": null,
|
||||||
|
"p_deactivate_restricted_nfc_desc": null,
|
||||||
|
"p_deactivate_restricted_nfc_footer": null,
|
||||||
"s_unsupported_yk": "YubiKey non prise en charge",
|
"s_unsupported_yk": "YubiKey non prise en charge",
|
||||||
"s_yk_not_recognized": "Appareil non reconnu",
|
"s_yk_not_recognized": "Appareil non reconnu",
|
||||||
"p_operation_failed_try_again": "L'opération a échoué, veuillez réessayer.",
|
"p_operation_failed_try_again": "L'opération a échoué, veuillez réessayer.",
|
||||||
|
@ -229,6 +229,10 @@
|
|||||||
"l_no_yk_present": "YubiKeyがありません",
|
"l_no_yk_present": "YubiKeyがありません",
|
||||||
"s_unknown_type": "不明なタイプ",
|
"s_unknown_type": "不明なタイプ",
|
||||||
"s_unknown_device": "認識されないデバイス",
|
"s_unknown_device": "認識されないデバイス",
|
||||||
|
"s_restricted_nfc": null,
|
||||||
|
"l_deactivate_restricted_nfc": null,
|
||||||
|
"p_deactivate_restricted_nfc_desc": null,
|
||||||
|
"p_deactivate_restricted_nfc_footer": null,
|
||||||
"s_unsupported_yk": "サポートされていないYubiKey",
|
"s_unsupported_yk": "サポートされていないYubiKey",
|
||||||
"s_yk_not_recognized": "デバイスが認識されません",
|
"s_yk_not_recognized": "デバイスが認識されません",
|
||||||
"p_operation_failed_try_again": "操作に失敗しました。もう一度やり直してください。",
|
"p_operation_failed_try_again": "操作に失敗しました。もう一度やり直してください。",
|
||||||
|
@ -229,6 +229,10 @@
|
|||||||
"l_no_yk_present": "Nie wykryto YubiKey",
|
"l_no_yk_present": "Nie wykryto YubiKey",
|
||||||
"s_unknown_type": "Nieznany typ",
|
"s_unknown_type": "Nieznany typ",
|
||||||
"s_unknown_device": "Nierozpoznane urządzenie",
|
"s_unknown_device": "Nierozpoznane urządzenie",
|
||||||
|
"s_restricted_nfc": null,
|
||||||
|
"l_deactivate_restricted_nfc": null,
|
||||||
|
"p_deactivate_restricted_nfc_desc": null,
|
||||||
|
"p_deactivate_restricted_nfc_footer": null,
|
||||||
"s_unsupported_yk": "Nieobsługiwany klucz YubiKey",
|
"s_unsupported_yk": "Nieobsługiwany klucz YubiKey",
|
||||||
"s_yk_not_recognized": "Urządzenie nie rozpoznane",
|
"s_yk_not_recognized": "Urządzenie nie rozpoznane",
|
||||||
"p_operation_failed_try_again": null,
|
"p_operation_failed_try_again": null,
|
||||||
|
Loading…
Reference in New Issue
Block a user