Posts

Showing posts with the label Cipher

JavaScript Substitution Cypher

   Simple JavaScript Substitution Cipher      A Substitution Cipher is an Encryption method in which units of the plaintext (generally single letters or pairs of letters of ordinary text) are replaced with other symbols or groups of symbols creating cipher text. <!DOCTYPE html> <html>     <head>         <title>Substitution Cipher</title>     </head>     <body bgcolor="green">     <center><p style="font-size:35px"><strong>Substitution Cipher</p></strong><br><br>         Place your text to Encrypt here:<br><br>             <input type="text" id="data" name="data"><br><br>         <p id="a"><...