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) ```