GithubHelp home page GithubHelp logo

isabella232 / digest.js Goto Github PK

View Code? Open in Web Editor NEW

This project forked from peerlibrary/digest.js

0.0 0.0 0.0 279 KB

Cryptographic digest and HMAC algorithms in Javascript for modern web browsers

Home Page: http://www.coding-stories.com/digest-js/

digest.js's Introduction

digest.js

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 (WARNING: since Firefox does not support the Dataview API, you should use the David Flanagan's emulation)
  • Safari 5.1

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

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

digest.js's People

Contributors

jcsirot avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.