Socket
Socket
Sign inDemoInstall

raw-sha-links

Package Overview
Dependencies
1
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    raw-sha-links

Block format limited to storing a list of sha2 hashed links to `raw` binary blocks.


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
24.5 kB
Created
Weekly downloads
 

Readme

Source

5845 2273

Block format limited to storing a list of sha2 hashed links to raw binary blocks.

This is a very restricted block format. It is limited to representing:

  • A single list of hashes.
  • All hashes must link to raw blocks (does not support other multicodecs).
  • All hashes must use sha2 encoding (256, 364 or 512).
  • All hashes must be the same length, no mixing and matching hashes of different lengths.

This may seem like a very narrow case but it's actually quite common to create new lists of links to hashed binary blocks.

By restricting to only SHA hashes we ensure that the block encoder/decoder can be implemented as a very small JavaScript library using only the available hashing functions in crypto.subtle.digest.

By restricting to only be a linear list of hashes we can do incredibly fast parsing without a single memcopy.

And finally, by requiring a unified length we have the smallest possible block format for storing this kind of data and we can always predict the block size required to store any number of link values.

rsl.encode(values)

Encode an array of values into a new block. Every value must be an ArrayBuffer of equal length.

rsl.decode(binary[, stringEncoding])

Accepts any binary type, binary view, or string. Base64 encoded strings are supported using decode(string, 'base64').

Returns an array of DataView instances for every hash.

rsl.max(size[, algo='SHA-256'])

Returns the max number of hashes that can be contained in the target size.

rsl.size(length[, algo='SHA-256'])

Returns the block size for a block containing length number of links.

For working with binary data you may want to use bytesish, especially if you're going to be copying or string encoding the DataView instances from decode().

For creating digest hashes in the you may want to use digestif. It has an incredibly small bundle size and works in Browsers and Node.js and will return you an Promise for an ArrayBuffer on both platforms which is what raw-sha-links expects.

FAQs

Last updated on 10 Oct 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc