diff --git a/certoperations.js b/certoperations.js index e23f2005..5964ad49 100644 --- a/certoperations.js +++ b/certoperations.js @@ -112,8 +112,6 @@ module.exports.CertificateOperations = function (parent) { // Create a self-signed certificate obj.GenerateRootCertificate = function (addThumbPrintToName, commonName, country, organization, strong) { - // TODO: Use Async key generation to use web workers and go a lot faster. - // rsa.generateKeyPair({ bits: 3072, e: 0x10001, workers: -1 }, function (err, keypair) { /*keypair.privateKey, keypair.publicKey*/ }); var keys = obj.pki.rsa.generateKeyPair({ bits: (strong == true) ? 3072 : 2048, e: 0x10001 }); var cert = obj.pki.createCertificate(); cert.publicKey = keys.publicKey; diff --git a/package.json b/package.json index 5beac842..b2be5b77 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "meshcentral", - "version": "0.2.7-x", + "version": "0.2.7-y", "keywords": [ "Remote Management", "Intel AMT", diff --git a/sample-config.json b/sample-config.json index 8f6ec74d..4825feac 100644 --- a/sample-config.json +++ b/sample-config.json @@ -46,7 +46,7 @@ "MaxUserSessions": 100, "MaxAgentSessions": 100 }, - "_yubikey": { "id": "0000", "secret": "xxxxxxxxxxxxxxxxxxxxx", "_proxy": "http://myproxy.domain.com:80" }, + "_yubikey": { "id": "0000", "secret": "xxxxxxxxxxxxxxxxxxxxx", "_proxy": "http://myproxy.domain.com:80" } }, "customer1": { "DNS": "customer1.myserver.com", diff --git a/views/default-mobile-min.handlebars b/views/default-mobile-min.handlebars index b5e22b68..ea422cca 100644 --- a/views/default-mobile-min.handlebars +++ b/views/default-mobile-min.handlebars @@ -1 +1 @@ - MeshCentral
{{{title}}}
{{{title2}}}
\ No newline at end of file + MeshCentral
{{{title}}}
{{{title2}}}
\ No newline at end of file diff --git a/views/default-mobile.handlebars b/views/default-mobile.handlebars index 159e4394..0d289e21 100644 --- a/views/default-mobile.handlebars +++ b/views/default-mobile.handlebars @@ -1597,8 +1597,8 @@ r += '
'; //r += getMeshActions(mesh, meshrights); r += '' + EscapeHtml(mesh.name) + '
'; - if (mesh.mtype == 1) { r += '
No Intel® AMT devices in this mesh'; } - if (mesh.mtype == 2) { r += '
No devices in this mesh'; } + if (mesh.mtype == 1) { r += '
No Intel® AMT devices in this group'; } + if (mesh.mtype == 2) { r += '
No devices in this group'; } r += '.
'; current = mesh._id; count++;