js-libp2p-crypto/src/key-stretcher.js

8 lines
249 B
JavaScript
Raw Normal View History

'use strict'
// Generates a set of keys for each party by stretching the shared key.
// (myIV, theirIV, myCipherKey, theirCipherKey, myMACKey, theirMACKey)
module.exports = (cipherType, hashType, secret) => {
throw new Error('Not implemented')
}