npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@scure/base

v2.3.0

Published

Secure, audited & 0-dep implementation of base64, bech32, base58, base32 & base16

Readme

scure-base

Audited & minimal implementation of bech32, base64, base58, base32 & base16.

  • 🔒 Audited by an independent security firm
  • 🔻 Tree-shakeable: unused code is excluded from your builds
  • 🏎 Fast: hand-optimized for caveats of JS engines
  • 🛡️ Strict: decoding rejects non-canonical padding and unknown characters
  • ✍️ Written in functional style, easily composable, uses native methods when available
  • 🪶 4KB (gzipped)

This library belongs to scure

scure — audited micro-libraries.

Usage

npm install @scure/base

deno add jsr:@scure/base

We support all major platforms and runtimes. The library is hybrid ESM / Common.js package.

Codecs

Every codec has the same API: encode(bytes: Uint8Array): string and decode(str: string): Uint8Array. Invalid input throws Error — see Strict decoding. Exceptions are bech32 / bech32m (words-based API) and base58check (requires external sha256); both are described below.

| Codec | Spec | Padding | Notes | | :------------------------------- | :------------------------------------------------------------------------- | :------- | :---------------------------------------------------------------------------- | | base16 | RFC 4648 §8 | — | Uppercase; decode is case-sensitive. Use hex for case-insensitive decoding | | hex | — | — | Lowercase; decode accepts both cases. Native Uint8Array.fromHex when available | | base32, base32nopad | RFC 4648 §6 | = / no | Uppercase; decode is case-sensitive | | base32hex, base32hexnopad | RFC 4648 §7 | = / no | Different alphabet ordering than base32 | | base32crockford | Crockford | — | Decode is case-insensitive and normalizes O→0, I→1, L→1 | | base64, base64nopad | RFC 4648 §4 | = / no | Native Uint8Array.fromBase64 when available | | base64url, base64urlnopad | RFC 4648 §5 | = / no | URL-safe alphabet; native builtin when available | | base58, base58flickr, base58xrp | draft-msporny | — | O(n²), only for small constant-size inputs — see below | | base58xmr | Monero | — | Processes 8-byte blocks, which makes it linear | | createBase58check(sha256) | Base58check | — | Returns a codec; caller injects sha256 | | bech32, bech32m | BIP173, BIP350 | — | Words-based API with (prefix, words) | | utf8, ascii | — | — | String ↔ bytes coders, strict validation |

import { base16, base32, base64, base58 } from '@scure/base';
// Flavors
import {
  base58flickr,
  base58xmr,
  base58xrp,
  base32nopad,
  base32hex,
  base32hexnopad,
  base32crockford,
  base64nopad,
  base64url,
  base64urlnopad,
  hex,
} from '@scure/base';

const data = Uint8Array.from([1, 2, 3]);
base64.decode(base64.encode(data));

// Convert utf8 string to Uint8Array
const data2 = new TextEncoder().encode('hello');
base58.encode(data2);

// Everything has the same API except for bech32 and base58check
base32.encode(data);
base16.encode(data);
base32hex.encode(data);

Also, the internal export __TESTS.base64Fallback is identical to base64, but never uses native code.

base58check

base58check is a special case: you need to pass sha256() function:

npm install @noble/hashes

import { createBase58check } from '@scure/base';
import { sha256 } from '@noble/hashes/sha2.js';

const base58check = createBase58check(sha256);

const data = Uint8Array.from([1, 2, 3]);
base58check.encode(data);

Bech32, Bech32m and Bitcoin

import { bech32, bech32m } from '@scure/base';

const words = bech32.toWords(new TextEncoder().encode('hello'));
const addr = bech32.encode('test', words);
console.log(addr); // "test1dpjkcmr09ys0qs"

const { prefix, words: decoded } = bech32.decode(addr);
console.log(prefix); // "test"
console.log(new TextDecoder().decode(bech32.fromWords(decoded))); // "hello"

console.log(bech32.decodeUnsafe('invalid')); // undefined, instead of throwing

// bech32m (BIP350) has the same API
bech32m.decode(bech32m.encode('test', words));

// Shortcuts which convert bytes to words and back for you
const addr2 = bech32.encodeFromBytes('test', new TextEncoder().encode('hello'));
const { bytes } = bech32.decodeToBytes(addr2);

Per BIP173, encoded strings are limited to 90 characters. encode and decode accept an optional limit argument to raise the limit (Lightning invoices are longer), or false to disable it entirely.

We provide low-level bech32 operations. If you need high-level methods for BTC (addresses, and others), use scure-btc-signer instead.

Bitcoin addresses use both 5-bit words and bytes representations. They can't be parsed using bech32.decodeToBytes.

Same applies to Lightning Invoice Protocol BOLT-11. We have many tests in ./test/bip173.test.ts that serve as minimal examples of Bitcoin address and Lightning Invoice Protocol parsers. Keep in mind that you'll need to verify the examples before using them in your code.

Do something like this:

import { bech32 } from '@scure/base';

const address = bech32.encode('bc', [0, ...bech32.toWords(new Uint8Array(20))]);
const decoded = bech32.decode(address);
// NOTE: words in bitcoin addresses contain version as first element,
// with actual witness program words in rest
// BIP-141: The value of the first push is called the "version byte".
// The following byte vector pushed is called the "witness program".
const [version, ...dataW] = decoded.words;
const program = bech32.fromWords(dataW); // actual witness program

hex, utf8 and ascii

hex, utf8 and ascii are string ↔ bytes coders. They follow the same BytesCoder interface, so encode takes bytes and returns a string, while decode takes a string and returns bytes:

import { hex, utf8, ascii } from '@scure/base';

hex.decode('0102ff'); // Uint8Array([1, 2, 255]); accepts "0102FF" too
hex.encode(Uint8Array.from([1, 2, 255])); // "0102ff", always lowercase

utf8.decode('hey'); // Uint8Array([104, 101, 121])
utf8.encode(Uint8Array.from([104, 101, 121])); // "hey"

ascii.decode('ABC'); // Uint8Array([65, 66, 67])

Unlike base16, hex emits lowercase and decodes either case, matching Node.js Buffer hex strings. utf8 is strict: it throws on invalid UTF-8 bytes and on malformed UTF-16 strings with lone surrogates, instead of silently emitting replacement characters. ascii rejects anything outside of 7-bit ASCII.

hex, base64 and base64url transparently use native Uint8Array.fromHex / fromBase64 builtins when the runtime provides them, falling back to the pure-JS implementation otherwise. Validation behavior is identical on both paths.

Strict decoding

If decode(str) succeeds, the input was canonical, with a small documented set of normalizations (hex and base32crockford case-folding, bech32 accepting all-uppercase strings). Everything else throws:

  • Unknown characters, including whitespace: base64.decode('aGk=\n') throws
  • Non-canonical or missing padding: base64.decode('aGk') throws (use base64nopad)
  • Non-zero bits in the final partial group: base64.decode('aGl=') throws
  • Mixed-case bech32 strings, per BIP173
  • Wrong input types: passing a non-string to decode or a non-Uint8Array to encode throws

This matters for security-sensitive code: malleable encodings enable transaction-ID and signature malleability, cache-poisoning and double-spending of allowlists. It also guarantees encode(decode(str)) either returns an equivalent canonical string or throws — unlike atob, which accepts and silently normalizes malformed input.

Design rationale

The code may look unnecessarily complicated; but the structure actually makes it much easier to reason about. Any encoding library consists of two functions:

encode(A) -> B
decode(B) -> A
  where X = decode(encode(X))
  # encode(decode(X)) can be !== X!
  # because decoding can normalize input

e.g.
base58checksum = {
  encode(): {
    // checksum
    // radix conversion
    // alphabet
  },
  decode(): {
    // alphabet
    // radix conversion
    // checksum
  }
}

But instead of creating two big functions for each specific case, we create them from tiny composable building blocks (alphabet, radix, padding, checksum, chain):

base58checksum = chain(checksum(), radix(), alphabet())

Which is the same as chain/pipe/sequence function in Functional Programming, but significantly more useful since it enforces same order of execution of encode/decode. Basically you only define encode (in declarative way) and get correct decode for free. So, instead of reasoning about two big functions you need only reason about primitives and encode chain. The design revealed obvious bug in older version of the lib, where xmr version of base58 had errors in decode's block processing.

base58 is O(n^2) and radixes

Uint8Array is represented as big-endian number:

[1, 2, 3, 4, 5] -> 1*(256**4) + 2*(256**3) 3*(256**2) + 4*(256**1) + 5*(256**0)
where 256 = 2**8 (8 bits per byte)

which is then converted to a number in another radix/base (16/32/58/64, etc).

However, generic conversion between bases has quadratic O(n^2) time complexity.

Which means base58 has quadratic time complexity too. Use base58 only when you have small constant sized input, because variable length sized input from user can cause DoS.

On the other hand, if both bases are power of same number (like 2**8 <-> 2**64), there is linear algorithm. For now we have implementation for power-of-two bases only (radix2). base58xmr sidesteps the issue differently: it encodes in fixed 8-byte blocks, which keeps it linear at the cost of a slightly different (Monero-specific) format.

Security

The library has been audited:

The library was initially developed for js-ethereum-cryptography. At commit ae00e6d7, it was extracted to a separate package called micro-base. After the audit we've decided to use @scure NPM namespace for security.

Supply chain security

  • Commits are signed with PGP keys to prevent forgery. Be sure to verify the commit signatures
  • Releases are made transparently through token-less GitHub CI and Trusted Publishing. Be sure to verify the provenance logs for authenticity.
  • Rare releasing is practiced to minimize the need for re-audits by end-users.
  • Dependencies are minimized and strictly pinned to reduce supply-chain risk.
    • We use as few dependencies as possible.
    • Version ranges are locked, and changes are checked with npm-diff.
  • Dev dependencies are excluded from end-user installs; they’re only used for development and build steps.

For this package, there are 0 dependencies; and a few dev dependencies:

  • jsbt is used for benchmarking / testing / build tooling and developed by the same author
  • prettier, fast-check and typescript are used for code quality / test generation / ts compilation

Speed

Run benchmarks with npm run benchmark. Results on Apple M4, Node.js v24:

base16 encode x 344 mib/sec
base16 decode x 142 mib/sec
base32 encode x 427 mib/sec
base32 decode x 165 mib/sec
base64 encode x 18.7 gib/sec
base64 decode x 6.63 gib/sec
base64nopad encode x 486 mib/sec
base64nopad decode x 214 mib/sec
base58 encode 32 B x 32.2 mib/sec
base58 decode 32 B x 60.2 mib/sec
utf8 encode x 1.81 gib/sec
utf8 decode x 1.78 gib/sec
bech32 toWords x 351 mib/sec
bech32 fromWords x 161 mib/sec

License

MIT (c) Paul Miller (https://paulmillr.com), see LICENSE file.