2018-01-09 23:13:41 -05:00
|
|
|
/**
|
|
|
|
* @description MeshCentral accelerator
|
|
|
|
* @author Ylian Saint-Hilaire
|
2019-01-03 19:22:15 -05:00
|
|
|
* @copyright Intel Corporation 2018-2019
|
2018-01-09 23:13:41 -05:00
|
|
|
* @license Apache-2.0
|
|
|
|
* @version v0.0.1
|
|
|
|
*/
|
|
|
|
|
2018-08-29 20:40:30 -04:00
|
|
|
/*xjslint node: true */
|
|
|
|
/*xjslint plusplus: true */
|
|
|
|
/*xjslint maxlen: 256 */
|
|
|
|
/*jshint node: true */
|
|
|
|
/*jshint strict: false */
|
|
|
|
/*jshint esversion: 6 */
|
|
|
|
"use strict";
|
2018-08-27 15:24:15 -04:00
|
|
|
|
2018-01-09 23:13:41 -05:00
|
|
|
const crypto = require('crypto');
|
|
|
|
var certStore = null;
|
|
|
|
|
|
|
|
process.on('message', function (message) {
|
|
|
|
switch (message.action) {
|
|
|
|
case 'sign': {
|
|
|
|
if (typeof message.key == 'number') { message.key = certStore[message.key].key; }
|
|
|
|
try {
|
|
|
|
const sign = crypto.createSign('SHA384');
|
2019-01-02 21:03:34 -05:00
|
|
|
sign.end(Buffer.from(message.data, 'binary'));
|
2018-01-09 23:13:41 -05:00
|
|
|
process.send(sign.sign(message.key).toString('binary'));
|
|
|
|
} catch (e) { process.send(null); }
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'setState': {
|
|
|
|
certStore = message.certs;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|