Click here to Skip to main content
15,891,762 members
Articles / Programming Languages / C++/CLI

Vigenere Cipher ASCII Based Encoder

Rate me:
Please Sign up or sign in to vote.
2.88/5 (12 votes)
13 Sep 2006CPOL 71.6K   1.8K   17   8
ASCII based encoder. Clear, encoded and key text allows all printable characters
Sample Image - Encoder1739.jpg

Introduction

This program allows encode text using a key that can be a word or any combination of printable characters and even spaces.

This program encodes by addition of the ASCII code of the first character of the clear text and the first ASCII code of the key, the result turns over a sequence from 32 to 126 that corresponds to all printable keys of the ASCII code. Then the second character of the clear text is encoded with the second character of the key, and so on until all characters of the key are used, to start with the first character of the key again. The key is used repeatedly until all the clear text is encoded.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer
United States United States
FERNANDO A. PAREDES ARNEDO
Electronic Engineer
Interests: Economics, Biology & Physics


fernandoparedesarnedo@hotmail.com

Comments and Discussions

 
Questionhow to use it Pin
Member 137047831-Mar-18 22:52
Member 137047831-Mar-18 22:52 
Questionfile encryption Pin
rojaldearintok15-Sep-15 3:54
rojaldearintok15-Sep-15 3:54 
QuestionThanks Pin
mcAsterixx3022-Aug-11 22:58
mcAsterixx3022-Aug-11 22:58 
GeneralCompile Problems Pin
kreak19-Jul-08 19:14
kreak19-Jul-08 19:14 
GeneralEasy to break Pin
gstoyanov12-Feb-06 21:40
gstoyanov12-Feb-06 21:40 
GeneralRe: Easy to break Pin
Member 9613-Feb-06 17:53
Member 9613-Feb-06 17:53 
GeneralRe: Easy to break Pin
gstoyanov14-Feb-06 1:25
gstoyanov14-Feb-06 1:25 
GeneralRe: Easy to break Pin
Member 9614-Feb-06 4:39
Member 9614-Feb-06 4:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.