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

aegis-aead

v0.2.3

Published

AEGIS authenticated encryption algorithms

Readme

AEGIS for JavaScript

npm CI

View on npm

A compact, zero-dependency JavaScript/TypeScript implementation of AEGIS, a family of fast, secure authenticated encryption algorithms.

AEGIS provides both encryption with authentication and standalone MAC functionality, with a simple API that makes it hard to misuse.

Table of Contents

Installation

bun add aegis-aead
# or
npm install aegis-aead

Quick Start

import { aegis128LCreateKey, aegis128LEncrypt, aegis128LDecrypt } from "aegis-aead";

const key = aegis128LCreateKey();
const message = new TextEncoder().encode("Hello, world!");
const associatedData = new TextEncoder().encode("metadata");

// Encrypt (nonce is generated automatically)
const sealed = aegis128LEncrypt(message, associatedData, key);

// Decrypt (returns null if authentication fails)
const decrypted = aegis128LDecrypt(sealed, associatedData, key);

Choosing an Algorithm

| Algorithm | Key | Nonce | Best For | | ---------- | -------- | -------- | ---------------------------------------- | | AEGIS-128L | 16 bytes | 16 bytes | General use, high throughput | | AEGIS-256 | 32 bytes | 32 bytes | Large nonce, unlimited messages | | AEGIS-128X | 16 bytes | 16 bytes | Interop with native SIMD implementations | | AEGIS-256X | 32 bytes | 32 bytes | Interop + large nonce |

Recommendations:

  • Default choice: AEGIS-128L offers excellent performance with safe random nonces up to 2^48 messages
  • Unlimited messages: AEGIS-256 when you need unlimited random nonces (32-byte nonce eliminates collision risk)
  • Interoperability: AEGIS-128X/256X when exchanging data with native implementations using these variants

Note: The X variants are designed for SIMD parallelism in native code. In JavaScript they offer no speed benefit but are provided for interoperability.

Performance

The numbers below come from bun run bench on an Apple M5 Max, with AES-GCM and ChaCha20-Poly1305 supplied by @noble/ciphers for comparison. Throughput is for combined-mode encryption with empty associated data; your mileage will vary with hardware and runtime.

| Algorithm | 64 B | 1 KB | 16 KB | 1 MB | | ----------------- | ------: | -------: | -------: | -------: | | AEGIS-128L | 50 MB/s | 224 MB/s | 310 MB/s | 324 MB/s | | ChaCha20-Poly1305 | 36 MB/s | 175 MB/s | 248 MB/s | 256 MB/s | | AEGIS-256 | 36 MB/s | 146 MB/s | 198 MB/s | 204 MB/s | | AES-128-GCM | 13 MB/s | 74 MB/s | 150 MB/s | 182 MB/s | | AES-256-GCM | 12 MB/s | 66 MB/s | 122 MB/s | 143 MB/s |

AEGIS-128L is the fastest option at every message size, reaching about 324 MB/s on large buffers — roughly 1.3x ChaCha20-Poly1305 and 1.8x AES-128-GCM.

Usage Examples

Combined Mode

The simplest API: returns nonce || ciphertext || tag in one buffer.

import { aegis128LCreateKey, aegis128LEncrypt, aegis128LDecrypt } from "aegis-aead";

const key = aegis128LCreateKey();
const message = new TextEncoder().encode("Hello, world!");
const ad = new TextEncoder().encode("metadata");

const sealed = aegis128LEncrypt(message, ad, key);
const decrypted = aegis128LDecrypt(sealed, ad, key);

Detached Mode

When you need separate access to ciphertext and tag:

import {
  aegis128LCreateKey,
  aegis128LCreateNonce,
  aegis128LEncryptDetached,
  aegis128LDecryptDetached
} from "aegis-aead";

const key = aegis128LCreateKey();
const nonce = aegis128LCreateNonce();
const message = new TextEncoder().encode("Hello, world!");
const ad = new TextEncoder().encode("metadata");

const { ciphertext, tag } = aegis128LEncryptDetached(message, ad, key, nonce);
const decrypted = aegis128LDecryptDetached(ciphertext, tag, ad, key, nonce);

In-Place Mode

Zero-copy encryption that modifies the buffer directly:

import {
  aegis128LCreateKey,
  aegis128LCreateNonce,
  aegis128LEncryptDetachedInPlace,
  aegis128LDecryptDetachedInPlace
} from "aegis-aead";

const key = aegis128LCreateKey();
const nonce = aegis128LCreateNonce();
const data = new TextEncoder().encode("Hello, world!");
const ad = new TextEncoder().encode("metadata");

// Encrypt: data is modified, tag is returned
const tag = aegis128LEncryptDetachedInPlace(data, ad, key, nonce);

// Decrypt: returns true if authentication succeeds
const success = aegis128LDecryptDetachedInPlace(data, tag, ad, key, nonce);

MAC (Message Authentication Code)

Authenticate data without encrypting:

import { aegis128LCreateKey, aegis128LMac, aegis128LMacVerify } from "aegis-aead";

const key = aegis128LCreateKey();
const data = new TextEncoder().encode("data to authenticate");

const tag = aegis128LMac(data, key);
const valid = aegis128LMacVerify(data, tag, key);

API Overview

All AEGIS variants follow the same API pattern. Replace aegis128L with your chosen algorithm (aegis256, aegis128X2, aegis128X4, aegis256X2, aegis256X4).

Functions

| Function | Description | | ------------------------------------------------------- | -------------------------------------------------- | | createKey() | Generate a random key | | createNonce() | Generate a random nonce | | encrypt(msg, ad, key, nonce?, tagLen?) | Encrypt, returns nonce \|\| ciphertext \|\| tag | | decrypt(sealed, ad, key, tagLen?) | Decrypt combined output, returns null on failure | | encryptDetached(msg, ad, key, nonce, tagLen?) | Encrypt, returns { ciphertext, tag } | | decryptDetached(ct, tag, ad, key, nonce) | Decrypt detached, returns null on failure | | encryptDetachedInPlace(data, ad, key, nonce, tagLen?) | Encrypt in-place, returns tag | | decryptDetachedInPlace(data, tag, ad, key, nonce) | Decrypt in-place, returns boolean | | mac(data, key, nonce?, tagLen?) | Generate MAC tag | | macVerify(data, tag, key, nonce?) | Verify MAC tag |

Parameters

  • msg/data: Uint8Array - Data to encrypt/authenticate
  • ad: Uint8Array - Associated data (authenticated but not encrypted)
  • key: Uint8Array - Encryption key (16 or 32 bytes depending on algorithm)
  • nonce: Uint8Array - Number used once (auto-generated if omitted in combined mode)
  • tagLen: number - Authentication tag length: 16 (default) or 32

Constants

Each algorithm exports size constants:

import { AEGIS_128L_KEY_SIZE, AEGIS_128L_NONCE_SIZE } from "aegis-aead";
// AEGIS_128L_KEY_SIZE = 16
// AEGIS_128L_NONCE_SIZE = 16

Parallel Variants (AEGIS-128X / AEGIS-256X)

The X variants support a configurable degree of parallelism:

// Pre-configured for degree 2 and 4
import { aegis128X2Encrypt, aegis128X4Encrypt } from "aegis-aead";

// Or use custom degree (typically 2 or 4)
import { aegis128XEncrypt } from "aegis-aead";
const sealed = aegis128XEncrypt(msg, ad, key, nonce, 16, 4); // degree=4

Security Considerations

Nonce Safety

  • Combined mode generates random nonces automatically
  • Detached mode requires you to provide nonces - never reuse a nonce with the same key
  • AEGIS-128L/128X: Safe for up to 2^48 messages per key with random nonces
  • AEGIS-256/256X: No practical limits on message count

Tag Lengths

All algorithms support 16-byte (128-bit) and 32-byte (256-bit) tags:

// 32-byte tag
const sealed = aegis128LEncrypt(msg, ad, key, undefined, 32);

Constant-Time Implementation

All variants are built on a constant-time bitsliced AES implementation that doesn't use lookup tables, which prevents cache-timing attacks. The bitsliced code processes all state blocks in a single fused round, and it is also the fastest scalar implementation we know of, so the protection comes at no cost. There is no faster table-based fallback to choose, and no reason to want one.

Compatibility

Runtime Requirements:

The library uses the Web Crypto API (crypto.getRandomValues) for key/nonce generation:

  • All modern browsers
  • Node.js 18+
  • Deno
  • Bun

Interoperability:

This library implements the AEGIS IETF draft specification and interoperates with any compliant implementation. See the full list of AEGIS implementations.

Browser Example

A browser demo is included:

bun run build:example
open examples/index.html