Hi,
Do you think that following approaches are good for production:
1) Provide password and decrease the transfer speed
E.on('init', function() { E.setPassword("Password"); E.lockConsole(); NRF.setLowPowerConnection(true); });
All possible password combinations based on this https://math.stackexchange.com/questions/2103361/derive-an-algorithm-for-computing-the-number-of-restricted-passwords-for-the-gen#2103361 combined with the low response speed, practically makes the Puck unbreakable ?
2) Protect your functions with password ?
function someFunction(pwd, parameters) { if (pwd!='FunctionPassword') { NRF.disconnect(); } // process the request }
Thank you.
@user73560 started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Hi,
Do you think that following approaches are good for production:
1) Provide password and decrease the transfer speed
All possible password combinations based on this https://math.stackexchange.com/questions/2103361/derive-an-algorithm-for-computing-the-number-of-restricted-passwords-for-the-gen#2103361
combined with the low response speed, practically makes the Puck unbreakable ?
2) Protect your functions with password ?
Thank you.