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 | 1x | /** * @typedef MFKDFFactor * @type {object} * @property {string} type - Type of factor * @property {string} [id] - Unique identifier of this factor * @property {Buffer} data - Key material for this factor * @property {function} params - Asynchronous function to fetch parameters * @property {number} [entropy] - Actual bits of entropy this factor provides * @property {function} [output] - Asynchronous function to fetch output */ module.exports = { setup: require('./setup'), derive: require('./derive'), secrets: require('./secrets'), policy: require('./policy'), auth: require('./auth'), stage: require('./stage'), ...require('./kdf') } |