mirror of
https://github.com/FranP-code/Baileys.git
synced 2025-10-13 00:32:22 +00:00
22 lines
453 B
JavaScript
22 lines
453 B
JavaScript
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,
|
|
};
|
|
}
|