Caesar Cipher
From Sfvlug
(Difference between revisions)
Line 1: | Line 1: | ||
This uses a simple encryption method known as the caesar cipher to encrypt a line of text entered by the user by offsetting the value of the letters in a line entered, or decrypt a line of line of text by selecting the correct negative offset. | This uses a simple encryption method known as the caesar cipher to encrypt a line of text entered by the user by offsetting the value of the letters in a line entered, or decrypt a line of line of text by selecting the correct negative offset. | ||
- | [http://deadbytes.net/code/C/caesar.c | + | [http://deadbytes.net/code/C/caesar.c Source Code] |
Current revision as of 01:23, 30 January 2007
This uses a simple encryption method known as the caesar cipher to encrypt a line of text entered by the user by offsetting the value of the letters in a line entered, or decrypt a line of line of text by selecting the correct negative offset. Source Code