hkdf

v0.0.2
HKDF key derivation function

node-hkdf

The HMAC-based Key Derivation Function for node.js.

spec: https://tools.ietf.org/html/rfc5869

install

npm install hkdf

use

const HKDF = require('hkdf');

var hkdf = new HKDF('sha256', 'salt123', 'initialKeyingMaterial');
hkdf.derive('info', 42, function(key) {
  // key is a Buffer, that can be serialized however one desires
  console.log(key.toString('hex'));
});

license

Apache License 2.0

npm i hkdf

Metadata

  • Unknown
  • >= 0.6.5
  • Ben Adida
  • released 11/21/2013

Downloads

Maintainers