Skip to content
Snippets Groups Projects
Commit 8db290ee authored by Zdravko Iliev's avatar Zdravko Iliev
Browse files

add arraybuffer to base64 before sorting

parent 757e41dc
No related branches found
No related tags found
1 merge request!39Resolve "QR Code Data Signing & Verification flow"
......@@ -155,7 +155,7 @@ const computeQrCodeHash = async (emailData: MessageData): Promise<string> => {
const hashArray = await Promise.all(promises);
return hashArray.sort().join("\n");
return hashArray.map(arrayBufferToBase64).sort().join("\n");
};
const calculateQRCodeSignature = async (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment