From ac1d9b5314a93409be4994e265edea25dc58b121 Mon Sep 17 00:00:00 2001 From: Hugh Nimmo-Smith Date: Wed, 14 Jan 2026 09:47:23 +0000 Subject: [PATCH] Remove | from concatenated strings --- proposals/4388-secure-qr-channel.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proposals/4388-secure-qr-channel.md b/proposals/4388-secure-qr-channel.md index b50063e27..eb9e13f07 100644 --- a/proposals/4388-secure-qr-channel.md +++ b/proposals/4388-secure-qr-channel.md @@ -734,7 +734,7 @@ interface](https://www.rfc-editor.org/rfc/rfc9180.html#hpke-export) of its main **Sp** are used as inputs for the export interface: ``` -CheckBytes := Context_S.Export("MATRIX_QR_CODE_LOGIN_CHECKCODE|" || Gp || "|" || Sp , size=2) +CheckBytes := Context_S.Export("MATRIX_QR_CODE_LOGIN_CHECKCODE" || Gp || Sp , size=2) CheckCode := NumToString(CheckBytes[0] % 10) || NumToString(CheckBytes[1] % 10) ``` @@ -758,7 +758,7 @@ Device G compares the code that the user has entered with the **CheckCode** that as before: ``` -CheckBytes := Context_G.Export("MATRIX_QR_CODE_LOGIN_CHECKCODE|" || Gp "|" || Sp , size=2) +CheckBytes := Context_G.Export("MATRIX_QR_CODE_LOGIN_CHECKCODE" || Gp || Sp , size=2) CheckCode := NumToString(CheckBytes[0] % 10) || NumToString(CheckBytes[1] % 10) ```