
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@agentcommercekit/keys
Advanced tools
Methods for dealing with cryptographic keys on multiple curves (secp256k1, Ed25519).
Methods for dealing with cryptographic keys on multiple curves (secp256k1, Ed25519).
This package is part of the Agent Commerce Kit.
npm i @agentcommercekit/keys
# or
pnpm add @agentcommercekit/keys
import {
generateKeypair,
keypairToJwk,
encodePublicKeyFromKeypair
} from "@agentcommercekit/keys"
// Generate and format keypairs
const keypair = await generateKeypair("secp256k1")
const jwkKeypair = keypairToJwk(keypair)
// Format public keys
const hexPublicKey = encodePublicKeyFromKeypair("hex", keypair)
const jwkPublicKey = encodePublicKeyFromKeypair("jwk", keypair)
const multibasePublicKey = encodePublicKeyFromKeypair("multibase", keypair)
const base58PublicKey = encodePublicKeyFromKeypair("base58", keypair)
generateKeypair(curve: KeyCurve, privateKeyBytes?: Uint8Array): Promise<Keypair>
keypairToJwk(keypair: Keypair): PrivateKeyJwk
jwkToKeypair(jwk: PrivateKeyJwk): Keypair
encodePublicKeyFromKeypair<T extends PublicKeyEncoding>(encoding: T, keypair: Keypair): PublicKeyTypeMap[T]
Encoding utilities are also available via subpath exports:
import { bytesToBase58, base58ToBytes } from "@agentcommercekit/keys/encoding"
Copyright (c) 2025 Catena Labs, Inc.
FAQs
Methods for dealing with cryptographic keys on multiple curves (secp256k1, Ed25519).
The npm package @agentcommercekit/keys receives a total of 125 weekly downloads. As such, @agentcommercekit/keys popularity was classified as not popular.
We found that @agentcommercekit/keys demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.