Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | 1x 37x 37x 37x 37x 37x 1x | /** * @file MFKDF Stack Factor Derivation * @copyright Multifactor 2022 All Rights Reserved * * @description * Derive key stacking factor for multi-factor key derivation * * @author Vivek Nair (https://nair.me) <[email protected]> */ const deriveKey = require('../key').key /** * Derive an MFKDF stacked key factor * * @example * // setup key with hmacsha1 factor * const setup = await mfkdf.setup.key([ * await mfkdf.setup.factors.hmacsha1() * ], {size: 8}) * * // calculate response; could be done using hardware device * const secret = setup.outputs.hmacsha1.secret * const challenge = Buffer.from(setup.policy.factors[0].params.challenge, 'hex') * const response = crypto.createHmac('sha1', secret).update(challenge).digest() * * // derive key with hmacsha1 factor * const derive = await mfkdf.derive.key(setup.policy, { * hmacsha1: mfkdf.derive.factors.hmacsha1(response) * }) * * setup.key.toString('hex') // -> 01d0c7236adf2516 * derive.key.toString('hex') // -> 01d0c7236adf2516 * * @param {Object.<string, MFKDFFactor>} factors - Factors used to derive this key * @returns {function(config:Object): Promise<MFKDFFactor>} Async function to generate MFKDF factor information * @author Vivek Nair (https://nair.me) <[email protected]> * @since 0.15.0 * @memberof derive.factors */ function stack (factors) { return async (params) => { const key = await deriveKey(params, factors) return { type: 'stack', data: key.key, params: async () => { return key.policy }, output: async () => { return key } } } } module.exports.stack = stack |