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

@lazybird-inc/nest-crypto

v1.1.0

Published

Client-side zero-knowledge encryption engine for Nest by LazyBird. Publicly auditable.

Downloads

334

Readme

@lazybird-inc/nest-crypto

NPM Version License: MIT Tests

The client-side zero-knowledge encryption engine powering Nest by LazyBird.

This library is open-source and publicly auditable so that users and security researchers can independently verify that no backdoors exist in the encryption pipeline. The exact version of this package used in the production Nest application is verifiable directly in the browser via Subresource Integrity (SRI).


Cryptographic Design

| Operation | Algorithm | |---|---| | Key Derivation | Argon2id (primary) / PBKDF2 (fallback) | | Key Wrapping | XChaCha20-Poly1305 (libsodium) | | File Encryption | XChaCha20-Poly1305 secretstream (libsodium) | | Auth Hash | BLAKE2b (libsodium) | | Random Generation | libsodium randombytes_buf (CSPRNG) |

Zero-Knowledge Key Hierarchy

Password
    │
    ▼  Argon2id(password, salt)
Root Key  ──────────────────────────────────────────────────────────────
    │                                                                   │
    ▼  BLAKE2b(RootKey, 'auth_')                  BLAKE2b(RootKey, 'wrap_')
Auth Hash  ──→ sent to server for login         Wrapping Key  (stays on device)
                                                    │
                                                    ▼  XChaCha20-Poly1305
                                                Master Key  ←─ stored encrypted on server
                                                    │
                                              ┌─────┴─────┐
                                              ▼           ▼
                                         Folder Key   Folder Key  ← stored encrypted per-folder
                                              │
                                              ▼  XChaCha20-Poly1305
                                          File Key  ← stored encrypted per-file
                                              │
                                              ▼  XChaCha20-Poly1305 secretstream
                                        Encrypted File  ← stored on Obsideo network

The password never leaves your device. The server only ever sees the AuthHash — a one-way BLAKE2b derivative that cannot be reversed to recover the Root Key or password.


Installation

npm install @lazybird-inc/nest-crypto

Usage

import {
    init,
    deriveRootKey,
    deriveAuthHash,
    generateSalt,
    generateMasterKey,
    encryptMasterKey,
    decryptMasterKey,
    generateFileKey,
    encryptFile,
    decryptFile,
} from '@lazybird-inc/nest-crypto';

// Must be called once before any other function
await init();

// Key derivation
const salt = generateSalt();
const rootKey = await deriveRootKey(password, salt, { algorithm: 'argon2id' });
const authHash = deriveAuthHash(rootKey); // send this to the server for login

Security Audits

We welcome independent security audits of this library. If you are a security researcher and would like access to audit the closed-source Nest frontend wrapper in addition to this public package, please apply at [email protected].

Published audit reports are available at nest.lazybird.io/security.

To report a vulnerability, please see SECURITY.md.


License

MIT © LazyBird Inc.