plz help me to solve this problem. thank u very much.
|
|
|||||||||||
|
closed as not a real question by balpha, Marc Gravell♦ Aug 21 at 10:42 |
|
|
You can at the maximum obfuscate it. But won't be secure. There are many obfuscating tools available. Take a look at |
||
|
|
|
|
No JavaScript file will ever be secure. At best, you can obfuscate, but this can be reverse engineered. A relevant discussion on the topic |
||
|
|
|
|
Not quite an obfuscator (it is designed to make JS smaller), but something like JSMin might be useful to you. By using JavaScript as a technology choice you must be happy that people can view the code. Using JSMin will certainly make it harder for someone to understand your JavaScript. It also has the added bonus of making your pages smaller (that's it real purpose). |
||
|
|
|
|
Not sure what you mean by "secure", but javascripts can be downloaded easily. Obfuscating the javascript code might help a bit, but I general see this as a bad idea, as anyone who really wants to understand your code can do it. If you don't want others to see your code, maybe you can put some of the logic on server side, using PHP or any other language. |
||
|
|
|
|
It's not possible, as already suggested the best thing you can do is obfuscate it. You can make it harder for people to get to it by referencing external js files and separating the code up and referencing them inside eachother so they are having to bounce about multiple files. However, I think all in all...its just not worth the hassle! |
||
|
|
|
|
I don't know what you mean by 'secure', but if you're talking passwords and such, forget about it. JavaScript is client-side, which means it is readable by the user whatsoever. There are tricks to make it harder for a user to obtain your script file (and subsequently, to understand it), but they'll never solve it all. Simply having FireBug allows you to retrieve all the code on the current page, after which 'de-obfuscation' is just a matter of time. Long story short: don't put sensitive data in JavaScript. It's not secure. |
||
|
|
