Skip to content

Base64URL adapter for WebAssembly and JS implementations

Notifications You must be signed in to change notification settings

hazae41/base64url

Repository files navigation

Base64Url

Base64Url adapter for WebAssembly and JS implementations

npm i @hazae41/base64url

Node Package 📦

Features

Current features

  • 100% TypeScript and ESM
  • No external dependencies

Getting started

Buffer (NodeJS)

import { Base64Url } from "@hazae41/base64url"

Base64Url.set(Base64Url.fromBuffer())

WebAssembly

npm i @hazae41/base64.wasm"
import { Base64Url } from "@hazae41/base64url"
import { Base64Wasm } from "@hazae41/base64.wasm"

await Base64Wasm.initBundled()

Base64Url.set(Base64Url.fromBufferOrWasm(Base64Wasm))

Scure (JavaScript)

npm i @scure/base
import { Base64Url } from "@hazae41/base64url"
import * as Scure from "@scure/base"

Base64Url.set(Base64Url.fromBufferOrScure(Scure))

Usage

const encoded: string = Base64Url.get().getOrThrow().encodeUnpaddeOrThrow(new Uint8Array([1,2,3,4,5]))
using decoded: Copiable = Base64Url.get().getOrThrow().decodeUnpaddedOrThrow(encoded)
const decoded2: Uint8Array = decoded.bytes.slice()

About

Base64URL adapter for WebAssembly and JS implementations

Resources

Stars

Watchers

Forks

Packages

No packages published