Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Specify to use multibase representation of the base64url algorithm. #179

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1184,7 +1184,7 @@ <h3>Bitstring Generation Algorithm</h3>
<li>
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].
</li>
<li>
Return the |compressed bitstring|.
Expand All @@ -1209,7 +1209,7 @@ <h3>Bitstring Expansion Algorithm</h3>
</li>
<li>
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]].
</li>
Expand Down
Loading