Windows всегда требует вставить FIDO2-ключ, а у меня есть лишь PIN (Windows Hello). Как сделать, чтобы при вызове `navigator.credentials.get({ userVerification: "required" })` система запрашивала PIN, а не аппаратный ключ? Возможно ли вообще использование пароля ОС, если нет физического ключа? Пробовал это, но просит ключ, а не PIN:
const credentialId = "AQIDBAUGBwgJ";
function base64ToArrayBuffer(base64String) {
const padding = '='.repeat((4 - (base64String.length % 4)) % 4);
const base64 = (base64String + padding)
.replace(/\-/g, '+')
.replace(/_/g, '/');
const rawData = window.atob(base64);
const outputArray = new Uint8Array(rawData.length);
for (let i = 0; i < rawData.length; i++) {
outputArray[i] = rawData.charCodeAt(i);
}
return outputArray.buffer;
}
const challengeBytes = new Uint8Array([21, 57, 200, 13, 99, 42]);
const publicKey = {
challenge: challengeBytes,
allowCredentials: [{
id: base64ToArrayBuffer(credentialId),
type: "public-key"
}],
userVerification: "required",
authenticatorSelection: {
authenticatorAttachment: 'platform',
residentKey: 'required'
}
};
(async () => {
const assertion = await navigator.credentials.get({ publicKey });
console.log(assertion);
})();