Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nodejs/node-v0.x-archive
base: e6016dae348c
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: 6514a4128c3e
Choose a head ref
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on Jan 22, 2014

  1. crypto: support custom pbkdf2 digest methods

    Make the HMAC digest method configurable.  Update crypto.pbkdf2() and
    crypto.pbkdf2Sync() to take an extra, optional digest argument.
    
    Before this commit, SHA-1 (admittedly the most common method) was used
    exclusively.
    
    Fixes #6553.
    bnoordhuis authored and indutny committed Jan 22, 2014
    Copy the full SHA
    74d9aa4 View commit details
    Browse the repository at this point in the history
  2. test: fix array sorting bug

    `a === a.sort()` is always true because Array#sort() does an in-place
    sort.  Make a copy of the array first.
    bnoordhuis authored and indutny committed Jan 22, 2014
    Copy the full SHA
    6514a41 View commit details
    Browse the repository at this point in the history