Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Honal <christoph.honal@web.de>2022-08-05 00:11:20 +0300
committerJonathan White <support@dmapps.us>2022-09-22 13:49:07 +0300
commit7de9ab25ab4223572a64d7391d2aa20fb56b36ba (patch)
tree646b462d6024665b2fad1b669c53099d9dd1355f
parent233be1fc10813d6e4f2cb1fea016ef4f9f2093ea (diff)
Hardware keys: Add VivoKey and DT token ATRs
This adds the ATRs of the VivoKey Apex and the Dangerous Things FlexSecure tokens, in order to display a human-readable name instead of "Unknown Key".
-rw-r--r--src/keys/drivers/YubiKeyInterfacePCSC.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/keys/drivers/YubiKeyInterfacePCSC.h b/src/keys/drivers/YubiKeyInterfacePCSC.h
index 17e282111..e8e6307c9 100644
--- a/src/keys/drivers/YubiKeyInterfacePCSC.h
+++ b/src/keys/drivers/YubiKeyInterfacePCSC.h
@@ -106,7 +106,10 @@ private:
"\x3B\xFD\x13\x00\x00\x81\x31\xFE\x45\x41\x37\x30\x30\x36\x43\x47\x20\x32\x34\x32\x52\x31\xD6"),
"YubiKey NEO (token)"},
// Other tokens implementing the Yubikey challenge-response protocol
- {QByteArrayLiteral("\x3B\x80\x80\x01\x01"), "Fidesmo Card 2.0"}};
+ {QByteArrayLiteral("\x3B\x80\x80\x01\x01"), "Fidesmo Card 2.0"},
+ {QByteArrayLiteral("\x3B\x8A\x80\x01\x00\x31\xC1\x73\xC8\x40\x00\x00\x90\x00\x90"), "VivoKey Apex"},
+ {QByteArrayLiteral("\x3B\x8D\x80\x01\x00\x31\xC1\x73\xC8\x40\x00\x52\xA5\x10\x00\x90\x00\x70"),
+ "Dangerous Things FlexSecure"}};
};
#endif // KEEPASSX_YUBIKEY_INTERFACE_PCSC_H