canonical-json-olpc
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

canonical-json-olpc

JSON canonicalization compliant with the OLPC Canonical JSON specification.

Why

If you're looking for RFC 8785 compliant JSON canonicalization there are any number of libraries to choose from. You should only select this library if you know that you specifically need support for the OLPC-style of canonicalization.

One reason you might chose OLPC compliance is for interoperability with The Update Framework which specifically calls out OLPC as the canonicalization standard for computing signatures over TUF metadata.

The canonicalized strings generated by this library are compatible with those generated by the Python-based securesystemslib library and the Go-based go-securesystemslib library.

Installation

npm install canonical-json-olpc

Usage

const json = require('canonical-json-olpc')

const obj = {
  bool: true,
  num: 42,
  ary: [1, 2, 3],
  str: "foo\\bar"
}

console.log(json.canonicalize(obj))
// output: {"ary":[1,2,3],"bool":true,"num":42,"str":"foo\\bar"}

Package Sidebar

Install

npm i canonical-json-olpc

Weekly Downloads

4

Version

1.0.1

License

MIT

Unpacked Size

5.78 kB

Total Files

5

Last publish

Collaborators

  • bdehamer