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

protonhash.js

v0.0.3

Published

Protonhash writed on javascript

Downloads

1

Readme

ProtonHash.js

ProtonHash.js is a Node.js package that provides a simple interface for generating hash values from files or strings. It is a port of the ProtonSDK hash algorithm from C++ to JavaScript.

To use this package in your project, install it via npm:


npm install protonsdk-hash

Usage

The package exposes four functions: filesize, HashString, getA, and hashFile.

filesize(filename)

filesize returns the size of the file with the given filename in bytes. It takes one argument:

filename: The path to the file to get the size of.

const { filesize } = require('protonhash');

const size = filesize('example.txt');
console.log(`Size of file: ${size}`);

HashString(str, len)

HashString computes the hash of a string or buffer. It takes two arguments:

str: The string or buffer to compute the hash of.
len: The length of the string or buffer, or 0 if the length should be automatically determined.

const { HashString } = require('protonhash.js');

const hash = HashString('Hello, world!', 0);
console.log(`Hash: ${hash}`);

getA(filename, pSizeOut, bAddBasePath, bAutoDecompress)

getA reads the contents of a file into a Uint8Array. It takes four arguments:

filename: The path to the file to read.
pSizeOut: An array to store the size of the file in bytes.
bAddBasePath: (Unused in the JavaScript implementation. It is included for compatibility with the original C++ implementation.)
bAutoDecompress: (Unused in the JavaScript implementation. It is included for compatibility with the original C++ implementation.)

const { getA } = require('protonhash.js');

let size = 0;
const pData = getA('example.txt', [size], false, false);
console.log(`Hash: ${HashString(pData, size)}`);

hashFile(filename)

hashFile is a convenience function that combines filesize, getA, and HashString to compute the hash of a file in one step. It takes one argument:

filename: The path to the file to compute the hash of.

const { hashFile } = require('protonhash.js');

const hash = hashFile('example.txt');
console.log(`Hash: ${hash}`);

Example

You can run this application using node in the command line. The application prompts the user to enter a file path, reads the file, calculates the hash value using protonhash, and displays the hash value in the console.

const protonhash = require('protonhash.js');

const readline = require('readline');

async function main() {
  let filename = process.argv[2];
  if (!filename) {
    const rl = readline.createInterface({
      input: process.stdin,
      output: process.stdout,
    });
    filename = await new Promise((resolve) =>
      rl.question('Enter file path: ', resolve)
    );
    rl.close();
  }
  let pData;
  let size = 0;
  size = protonhash.filesize(filename);
  pData = protonhash.getA(filename, size, false, false);
  if (pData) {
    console.log(`Hash file success! Hash: ${protonhash.HashString(pData, size)}`);
  }
}

main();

License

This package is licensed under the MIT License.