Browse Source

BugFix for Hashed Keys

pull/2/head
Vitor Pamplona 5 years ago
parent
commit
6e0cbd5aa3
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      index.v5.html

+ 2
- 2
index.v5.html View File

@ -194,7 +194,7 @@ DcJqR5clbAYlO9lHmvb4lsPLZHjugQ==
});
}
function generateQRCodes() {
async function generateQRCodes() {
clear();
// Where to Download the public key
@ -204,7 +204,7 @@ DcJqR5clbAYlO9lHmvb4lsPLZHjugQ==
const priKeyPEM = e('privkey').value;
// Build PassKeyHash
const hashPassKeyBase32 = PCF.hashPayload(getValueArray(["qr-passkey-name", "qr-passkey-dob", "qr-passkey-salt", "qr-passkey-phone"]));
const hashPassKeyBase32 = await PCF.hashPayload(getValueArray(["qr-passkey-name", "qr-passkey-dob", "qr-passkey-salt", "qr-passkey-phone"]));
if (e("qr-badge-private").checked) {
// Update fields on Screen


Loading…
Cancel
Save