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

digest-js

v0.3.0

Published

A simple javascript library implementing cryptographic digests, HMAC and PBKDF algorithms.

Downloads

175

Readme

digest.js

Build Status Coverage Status

Overview

digest.js is a javascript library implementing cryptographic digest and HMAC algorithms.

digest.js is designed for modern web browsers and requires the W3C Typed Arrays support. digest.js has been successfully tested with these web browsers:

  • Chrome 11
  • Firefox 4
  • Safari 5.1
  • IE 10

Supported algorithms:

  • digest
    • MD5
    • SHA-1
    • SHA-256
  • Message Authentication Code (MAC)
    • HMAC/MD5
    • HMAC/SHA-1
    • HMAC/SHA-256
  • Password-Based Key Derivation Function (PBKDF)
    • PBKDF1/SHA1
    • PBKDF1/MD5
    • PBKDF2/HMAC/SHA1
    • PBKDF2/HMAC/SHA-256

Installation

Node

npm install digest-js

and then

Digest = require('digest-js');

Browser

<script type="text/javascript" src="path/to/digest.min.js"></script>

Compilation

digest.js is using npm and grunt

  1. Install Grunt

    npm install -g grunt-cli
  2. Download dependencies

    npm install
  3. Build the library

    grunt

API Usage

Digest

  1. Initialize a digest object

    var dg = new Digest.SHA1();
  2. Update some data

    var data = new ArrayBuffer(3);
    var buf = new Uint8Array(data);
    buf[0] = 0x61; /* a */
    buf[1] = 0x62; /* b */
    buf[2] = 0x63; /* c */
    dg.update(data);
  3. Finalize

    var result = dg.finalize();

It is also possible to digest some data at once:

var dg = new Digest.SHA1();
var result = dg.digest("abc");

MAC

  1. Initialize a MAC object

    var mac = new Digest.HMAC_SHA1();
  2. Set the key

    mac.setKey("KeyInPlainText");
  3. Update some data

    var data = new ArrayBuffer(50);
    var buf = new Uint8Array(data);
    for (var i = 0; i < 50; i++) {
        buf[i] = 0xdd;
    }
    mac.update(data);
  4. Finalize

    var result = mac.finalize();

PBKDF

  1. Initialize a PBKDF object with the iteration count

    var pbkdf = new Digest.PBKDF_HMAC_SHA1(2048);
  2. Derive key with the password, salt and desired key length (in bytes)

    var key = pbkdf.deriveKey("password", "salt", 24);

Misc

After the finalize, digest or mac methods have been called, the digest or mac object is automatically reset and can be reused.

The update, digest and mac methods accept these data types:

  • ArrayBuffer
  • String (US-ASCII encoding)
  • byte (i.e. a number in the range 0-255)

The MAC setKey method accepts these data types:

  • ArrayBuffer
  • String (US-ASCII encoding)

The PBKDF deriveKey method accepts these data types for password and salt:

  • ArrayBuffer
  • String (US-ASCII encoding)

License

digest.js is released under the terms of the GNU GENERAL PUBLIC LICENSE Version 3