You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to use bytecode to compile, and then run, encrypted code, so that:
encrypted files are crated
the decryption occurs within RAM, and no new file is created
compilation would be: bytenode --compile -p passCodeFile my_code.js //creates my_code.ejs
and execution bytenode -passCodeFile my_code.ejs
In addition, when launching the execution command, I would like to specify a script/function that return the key, instead of the passCodefile itself.
Do you think this would be possible?
The text was updated successfully, but these errors were encountered:
I would like to use bytecode to compile, and then run, encrypted code, so that:
compilation would be:
bytenode --compile -p passCodeFile my_code.js //creates my_code.ejs
and execution
bytenode -passCodeFile my_code.ejs
In addition, when launching the execution command, I would like to specify a script/function that return the key, instead of the passCodefile itself.
Do you think this would be possible?
The text was updated successfully, but these errors were encountered: