groups key generation bug fix

This commit is contained in:
Adhiraj Singh
2021-09-27 12:48:57 +05:30
parent 4aaf7b6a48
commit 12105a17ee
2 changed files with 39 additions and 23 deletions

View File

@@ -0,0 +1,21 @@
const curve = require('libsignal/src/curve');
const nodeCrypto = require('crypto');
exports.generateSenderKey = function() {
return nodeCrypto.randomBytes(32);
}
exports.generateSenderKeyId = function() {
return nodeCrypto.randomInt(2147483647);
}
exports.generateSenderSigningKey = function(key) {
if (!key) {
key = curve.generateKeyPair();
}
return {
public: key.pubKey,
private: key.privKey,
};
}