InstructionsView more random threads:
- Solution required of assignment # 2 mgt 603
- Write an eassay on Wireless Technologies
- plz find the attached file.
- MTH302 Assignment no 1
- CS402 Quiz
- cs201 solution idea on 15th April 2011
- Today Gemini Daily Horoscope 6th February 2016
- Riquire ISL(201) fall 2010 GDB#2 , solution
- eco402 gdb
- PHY101 Assignment 5 Solution Spring 2011 - 28 June 2011
Please read the following instructions carefully before submitting assignment:
It should be clear that your assignment will not get any credit if:
o Assignment is submitted after due date.
o Submitted assignment does not open or file is corrupt or in invalid format.
o Complete assignment or part of assignment is copied (From internet or to/from students).
Objective
The objective of this assignment is to understand the concept of encryption (encoding and decoding).
Sponsored Links
Assignment Submission Instructions
• Assignment should be submitted in only html format.
• On submitting any other format. Zero mark will be awarded.
• You should work only on the given html file.
Assignment
The task is very simple; you have to work on two functions Encrypt and Decrypt. The encrypt function will encrypt the user input string with the help of encryption key. The decrypt function will decrypt the user input string with the help of encryption key. The output will
Hints:
Encoding:
Read each character of user input and find its ASCII code using function charCodeAt. Add the key value into ASCII code of each character and covert new ASCII code to character by using function fromCharCode. Display all characters into Encoded Output box.
For example, you entered a character ‘X’, which has ASCII value 130. Add key value in 130, for example, 130+16=146. Then convert 146 to respective Character.
Decoding:
Read each character of user input and find its ASCII code using function charCodeAt. Subtract the key value from ASCII code of each character and covert new ASCII code to character by using function fromCharCode. Display all characters into Original String box.
There are currently 1 users browsing this thread. (0 members and 1 guests)