Official Review
NULL
|
Other links at JavaScript > Scripts and Programs > Security |
| 1. |
Crypto Maniac
|
|
|
CryptoManiac uses str2hex(string) as well as Rot 13, two very simple yet effective ways to scramble text. It can also grab remote source to be loaded in your text editor. This isnt a highly secure method of hiding your source code or script for the reason that; the browser needs to parse the data in order to understand it. Therefore if the browser can read it, regardless of the format, it would be insecure. But what Crypto Maniac can do is make it an annoyance to peek at your code
|
| 2. |
HexXOR.js
|
|
|
The HexXOR.js script performs XOR encryption and decryption of text according to a key specified by the user. The encrypted data is output in the form of hexadecimals, making it possible to paste the data within an HTML document without intefering with HTML or JavaSript reserved characters. The script is specifically intended to be used to password-protect HTML file content, though other uses (e.g. email address hiding) are of course also possible.
|
| 3. |
JScriptEncrypt
|
|
|
This JavaScript library provides encryption for Web pages using simple, text-oriented method called column transposition. The idea is to write the plain text in block on the row-first bases. The text is then read column-first. The trick is in that the columns are not read from left to right, but in the order specified by the encryption key. Simple transliteration is applied before encryption, allso. If one is not concerned with goverement spying on them, this method may provide enough secrecy. Ideas on how to use it: encrypt address book of the high school friends or save client-side cookies encrypted with users password.
|
| 4. |
EasyFreeCrypt
|
|
|
Encrytion of Strings with Javascript like ARCFOUR. but no trademark. Security requires that the key is used only once.
|
| 5. |
Source Code Security
|
|
|
A simple solution to completely remove your html source code from prying eyes using javascript and frames.
|
|
|