How to create an password encryption & decryption tool? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to create an password encryption & decryption tool?

Want to make a app that can encrypt & decrypt my passwords, numbers, words etc.

7th Sep 2019, 8:45 AM
Avinash Kumar (AVK)
Avinash Kumar (AVK) - avatar
1 Answer
+ 1
Well, you could create your own form of encryption or install a library for encrpytion apis (AES256). You can make your own which is kinda similar to ROT also known as rotate. To do it, store the item in a string, iterate over each character in the string and add an integer to each character. You should reference the ASCII table to see the number value for each character. Ex: RotateWord(1, "abc") returns "bcd" RotateWord(-1, "bcd") returns "abc" There is more to it than that but this post is getting long.
9th Sep 2019, 1:31 AM
John
John - avatar