Skip to content

akiratsuraii/python-reversed-caesar-ascii-cipher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

python-reversed-caesar-ascii-cipher

reversed caesar ascii cipher, a simple encrypt program

Encrypt & Decrypt

• Just two simple step to encrypt
 1 : encrypt keyword to caesar
 2 : reverse caesar and encrypt to numbers(ascii code)

• And two simple step to decrypt
 1 : arrange encryption to in order
 2 : decrypt caesar to normal text

result

Encrypt 2step
word: helloworld (user input)
caesar: khoorzruog
reversed + ascii code: [103, 111, 117, 114, 122, 114, 111, 111, 104, 107]

Decrypt 2step

in order keyword(ascii code): [107, 104, 111, 111, 114, 122, 114, 117, 111, 103]
decrypt caesar: helloworld

Process finished with exit code 0

About

reversed caesar ascii cipher

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages