How to encrypt words | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How to encrypt words

I want to make an encryptor Experts only

23rd Sep 2020, 9:08 AM
🥇👩‍💻 Kintu Michael Evans 🔥🔥( Active)
🥇👩‍💻 Kintu Michael Evans 🔥🔥( Active) - avatar
8 Answers
+ 8
You might wish to use this little code to help you understand ascii value to char [print(i,':',chr(i)) for i in range(32,127)] I found it really helpful when learning encryption
23rd Sep 2020, 10:42 AM
Rik Wittkopp
Rik Wittkopp - avatar
+ 6
Have a look to the learn section of the app and search for 'cipher'. You can find there several documents that are describing encryption.
23rd Sep 2020, 10:31 AM
Lothar
Lothar - avatar
+ 4
Fyi, ceasar cypher is totally breakable. obviously, I have every key in that code. But basically, this simple encryption represents each letter as a number (1-26) and a character displacement. (meaning, if the displacement = 5, then 5 would be added to each letter value[changed them to numbers, remember?]). Then i just change em back to letters and you have your encrypted text! Please check the links from these guys, there's a lot of good info on more advanced encrytion.
23rd Sep 2020, 10:30 AM
Slick
Slick - avatar
+ 3
Slick explain more
23rd Sep 2020, 10:25 AM
🥇👩‍💻 Kintu Michael Evans 🔥🔥( Active)
🥇👩‍💻 Kintu Michael Evans 🔥🔥( Active) - avatar
+ 2
Thanks everyone for the help
23rd Sep 2020, 4:02 PM
🥇👩‍💻 Kintu Michael Evans 🔥🔥( Active)
🥇👩‍💻 Kintu Michael Evans 🔥🔥( Active) - avatar
+ 1
there are lot of algorithms available for encryption
24th Sep 2020, 5:05 PM
Twinkle Baisane
Twinkle Baisane - avatar