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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@opsvent/hmac

v1.0.1

Published

Feature complete, easy to use signing and signature verification for all of your secure API request needs. It works both in browsers and in Node.JS.

Downloads

20

Readme

@opsvent/hmac

NPM Build Status Typescript License

Feature complete, easy to use signing and signature verification for all of your secure API request needs. It works both in browsers and in Node.JS.

Usage

  • Import the library
  • Generate some shared keys (see in demo/index.ts)
  • Before sending the request, sign it using the sign function, and attach the signature in a header (preferred is Authorization)
  • When receiving the request, extract the key ID to fetch the shared key from your DB
  • Verify the signature
  • Verify the returned nonce in your cache DB to check against replay attacks.
  • Learn more about HMAC: https://www.okta.com/identity-101/hmac/
  • See a complete demo in demo/index.ts

Details

  • Token type: OPSVENT-HMAC-SHA3
  • Uses SHA3 hashes
  • What is signed: <method>:<url>:<body sha3-256>:<timestamp>:<nonce>
  • Signature form: OPSVENT-HMAC-SHA3 <key id>:<signature>:<timestamp>:<nonce>
  • Timestamp is Unix timestamp
  • Nonce: nanoid(10) - collision resistance: 1% collision chance in 4 days when generating 500 IDs per second (good enough, but you can increase it)

Recommandations

  • Allowed timestamp difference should be < 5 minutes.
  • You should store the nonces for 10 minutes (in this case) to verify against them.
  • You should increase nonce length if using larger windows, or if you want extra collision resistance.
  • 256 bit key Base64 encoded (see demo/index.ts for generating it)
  • When running the verify function, you MUST check the returned nonce in your local DB

API

sign(input: SignInput, key: HmacKey): string

Create a signature using the given input and key. The returned string can be directly passed to the Authorization header.

getKeyIdFromSignature(signature: string): string

Returns the ID of the key used to create the signature. It throws if signature is not a valid signature.

verify(signature: string, verify: VerifyInput, key: HmacKey): string

Checks if a signature is valid. If it is invalid, it will throw an error. If everything is alright, it will return the nonce of the signature. You MUST verify this nonce in your local storage to check against replay attacks.

Input
interface Input {
	method: string; // The HTTP request method (ex: GET, POST, etc)
	url: string; // The complete URL of the request
	body: string; // The body of the request in string form
}
SignInput
interface SignInput extends Input {
	nonceLength?: number; // The length of the generated nonce. Default is 10
}
VerifyInput
interface VerifyInput extends Input {
	timeWindow?: number; // The allowed time window in which the signature is accepted
}
HmacKey
interface HmacKey {
	id: string; // Arbitrary ID, you can choose it to fit your application's needs
	key: string; // Base64 encoded key
}