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

@transmute/merkle-proof

v0.7.0-unstable.82

Published

``` npm i @transmute/merkle-proof --save ```

Downloads

84

Readme

@transmute/merkle-proof

npm i @transmute/merkle-proof --save

This library is designed to be used as a building block for systems that rely on merkle proofs.

There is currently no standard binary encoding for merkle proof, audit paths, deterministic nonce generation and member salting to prevent second preimage attacks.

As such standards are developed we will update this library to meet those specifications.

Specifically this library does not currently encode a JSON serialization.

Usage

import merkle from "@transmute/merkle-proof";
const membershipSetLength = 16;
const members = Array.from(
  { length: membershipSetLength },
  (_x, i) => Buffer.from(i.toString()) // members are integers encoded as strings
);
// this value is used to protect against brute force attacks on siblings
const rootNonce = Buffer.from("123", "hex");
const fullMembershipProof = merkle.generateMembership(members, rootNonce);
const verifiedFullDisclosureProof = merkle.verifyMembershipProof(
  fullMembershipProof.membership[i].member,
  fullMembershipProof.membership[i].proof,
  fullMembershipProof.root
);
const oddMembers = members.filter((_m, i) => {
  return i % 2 === 1;
});
const selectiveDisclosureProof = merkle.deriveMembershipProof(
  fullMembershipProof,
  oddMembers
);
const verifiedSelectiveDisclosureProof = merkle.verifyMembershipProof(
  verifiedSelectiveDisclosureProof.membership[i].member,
  verifiedSelectiveDisclosureProof.membership[i].proof,
  verifiedSelectiveDisclosureProof.root
);

Custom Hash Functions

By default, sha256 is used, however, a custom hash function may be specified. Please ensure its function signature matches sha256. Also note that the size of nonce is expected to be determined by the size of the digests of this function in bytes.

import {
  generateMembership,
  compressDisclosureProof,
  expandDisclosureProof,
  MemberProof,
} from "@transmute/merkle-proof";

// default hash function when none is specified
const sha256 = (data: Buffer): Buffer => {
  return crypto
    .createHash("sha256")
    .update(data)
    .digest();
};

const rootNonce = sha256(Buffer.from("entropy sourced for single use"));

const fullMembershipProof = generateMembership(members, rootNonce, sha256);

Compression

Selective disclosure proofs that rely on merkle audit paths contain a lot of redundant information, especially when the redaction set (number of undisclosed members) is small.

This redundancy can be easily mitigated through compression algorithms, we use zlib v1.2.8.

Beware that compression trades storage costs for computational costs and time.

import {
  generateMembership,
  compressDisclosureProof,
  expandDisclosureProof,
  MemberProof,
} from "@transmute/merkle-proof";
const fullMembershipProof = generateMembership(members, rootNonce);
// redaction set size 0 for full disclosure.
const compressedFullDisclosureProof = compressDisclosureProof(
  fullMembershipProof
);
const expandedFullDisclosureProof = expandDisclosureProof(
  compressedFullDisclosureProof
);
// compression is not applied to members, only sets of audit paths.
// therefore we must add members back to the decompressed proofs
// before asserting equivalence, note this behavior is subject to change,
// and is based on planned suport for digital signatures in other libraries
const membersMatchingProofs = expandedFullDisclosureProof.membership.map(
  (m: MemberProof, i: number) => {
    return {
      member: fullMembershipProof.membership[i].member,
      proof: m.proof,
    };
  }
);
expect(fullMembershipProof).toEqual({
  ...expandedFullDisclosureProof,
  membership: membersMatchingProofs,
});

Development

npm i
npm run lint
npm run test
npm run build

Inspiration