Skip to main content
Module

x/djwt/deps.ts>base64url

Create and verify JSON Web Tokens (JWT) with Deno or the browser.
Very Popular
Go to Latest
namespace base64url
import { base64url } from "https://deno.land/x/djwt@v3.0.0/deps.ts";

encodeBase64Url and decodeBase64Url for base64 URL safe encoding.

This module is browser compatible.

Examples

Example 1

import {
  decodeBase64Url,
  encodeBase64Url,
} from "https://deno.land/std@0.224.0/encoding/base64url.ts";

const binary = new TextEncoder().encode("foobar");
const encoded = encodeBase64Url(binary);
console.log(encoded);
// => "Zm9vYmFy"

console.log(decodeBase64Url(encoded));
// => Uint8Array(6) [ 102, 111, 111, 98, 97, 114 ]

Functions

Converts given base64url encoded data back to original

Encodes a given ArrayBuffer or string into a base64url representation