From 161fe0df33343ef2681caf484cd637424683d4b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Tue, 22 Apr 2025 12:33:33 +0000 Subject: [PATCH] Add links to unpadded base64 definition MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kévin Commaille --- .../schema/m.room.third_party_invite.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/data/event-schemas/schema/m.room.third_party_invite.yaml b/data/event-schemas/schema/m.room.third_party_invite.yaml index 7739fdf6..704669d2 100644 --- a/data/event-schemas/schema/m.room.third_party_invite.yaml +++ b/data/event-schemas/schema/m.room.third_party_invite.yaml @@ -25,11 +25,11 @@ properties: format: uri public_key: description: |- - A base64-encoded ed25519 key with which the token must be signed - (though a signature from any entry in public_keys is also sufficient). + An Ed25519 key with which the token must be signed (though a signature + from any entry in `public_keys` is also sufficient). - The key is encoded using unpadded standard or URL-safe base64 - encoding. + The key is encoded using [Unpadded Base64](/appendices/#unpadded-base64), + using the standard or URL-safe alphabets. This exists for backwards compatibility. type: string @@ -47,10 +47,10 @@ properties: type: string public_key: description: |- - A base-64 encoded ed25519 key with which token may be signed. + An Ed25519 key with which the token may be signed. - The key is encoded using unpadded standard or URL-safe base64 - encoding. + The key is encoded using [Unpadded Base64](/appendices/#unpadded-base64), + using the standard or URL-safe alphabets. type: string required: - public_key