mirror of
https://github.com/fluencelabs/js-libp2p-crypto
synced 2025-04-25 12:22:28 +00:00
8 lines
249 B
JavaScript
8 lines
249 B
JavaScript
|
'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')
|
||
|
}
|