🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@uuaid/core

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uuaid/core

UUAID identifier grammar, canonical hashing, and crypto-agile signature envelopes.

latest
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

@uuaid/core

Cryptographic primitives for UUAID — the identity + certification layer for AI agents ("the SSL/CA for agents").

  • UUAID grammar — mint + parse uuaid:<namespace>:<type>:<uuidv7> (durable, creation-time-ordered agent identifiers).
  • JCS canonicalization (RFC 8785) + contentHash — stable, on-chain-ready content hashes for any JSON value.
  • Crypto-agile signature envelope — Ed25519 today; ml-dsa-65 / slh-dsa-128s reserved. Hybrid = multiple signatures over one payload in a single envelope.
import { mintUuaid, contentHash, generateEd25519, sealEnvelope, verifyEnvelope } from "@uuaid/core";

const agent = mintUuaid("agent");            // { uuaid, uuid }
const signer = generateEd25519();
const env = sealEnvelope({ hello: "world" }, [{ key: signer, keyId: "k1" }]);
verifyEnvelope(env);                          // { valid: true, verified: 1, total: 1 }

Built on the audited noble libraries. Node ≥ 18 and modern browsers. Apache-2.0 · uuaid.org

FAQs

Package last updated on 04 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts