Step by step tutorial to Retrieve the Data from FIDO2 Card
Important Notice: The Cryptnox Fido2 management app is designed only for advanced users who need to access additional configuration options. You don’t need to download this app to initialize or use the card for standard use.
No setup required: Cryptnox FIDO2 products are ready to use out of the box with all major operating systems and browsers that support FIDO2 and WebAuthn. No application or driver installation required.
For everyday use: Simply plug in or tap your card on a compatible device and follow the corresponding instructions — this app is not needed.
Step 1
Open FIDO2 Card Management app on your phone and go to “Settings”.
Step 2
Select “Genuine Check” button and then you will have to enter the PIN you set for the card.
Step 3
You will have to scan the FIDO2 card by tapping it on the back of the phone.
Step 4
You have successfully retrieved the data.
If you want to learn more about the features and security of FIDO2 cards, check out our FIDO2 Card Guide for a detailed explanation.
Enhance your FIDO2 card experience with premium security accessories. Explore our range at Cryptnox Shop
document.addEventListener('DOMContentLoaded', function () {
const form = document.querySelector('form.metform-form-content');
if (!form) return;
form.addEventListener('submit', function (e) {
const nameInput = form.querySelector('input[name="name"]');
if (nameInput) {
const nameValue = nameInput.value.trim();
const nameRegex = /^[A-Za-z]{3,20}$/;
if (!nameRegex.test(nameValue)) {
e.preventDefault(); // Stop form from submitting
alert("Please enter a valid name (only letters, 3 to 20 characters).");
nameInput.focus();
nameInput.style.borderColor = 'red';
} else {
nameInput.style.borderColor = ''; // Reset
}
}
});
});