From a335c2b67bd231b525a10c42fa458a25d40ba64b Mon Sep 17 00:00:00 2001 From: Patrick St-Louis <43082425+PatStLouis@users.noreply.github.com> Date: Sun, 13 Oct 2024 15:35:02 -0400 Subject: [PATCH] Specify to use multibase representation of the base64url algorithm. This adds specific instructions on the generate/expand bitstring algorithms to use multibase base64url instead of just base64url to be consistent with the data model section. --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 3cc2554..5f572b3 100644 --- a/index.html +++ b/index.html @@ -1184,7 +1184,7 @@

Bitstring Generation Algorithm

  • Generate a |compressed bitstring| by using the GZIP compression algorithm [[RFC1952]] on the |bitstring| -and then base64url-encoding (with no padding) [[RFC4648]] the result. +and then Multibase-encode the result using base64url (with no padding) [RFC4648].
  • Return the |compressed bitstring|. @@ -1209,7 +1209,7 @@

    Bitstring Expansion Algorithm

  • Generate an |uncompressed bitstring| by using the -base64url-decoding (with no padding) [[RFC4648]] algorithm on the +Multibase-decode algorithm on the |compressed bitstring| and then expanding the output using the GZIP decompression algorithm [[RFC1952]].