+ 2
How to encrypt words
I want to make an encryptor Experts only
8 Respostas
+ 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
+ 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.
+ 4
Hi, we have a different standard method to encrypt the data, use below link for more details
https://www.c-sharpcorner.com/UploadFile/f8fa6c/data-encryption-and-decryption-in-C-Sharp
https://docs.microsoft.com/en-us/dotnet/standard/security/encrypting-data
https://www.selamigungor.com/post/7/encrypt-decrypt-a-string-in-csharp
+ 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.
+ 3
Slick explain more
+ 2
Thanks everyone for the help
+ 1
there are lot of algorithms available for encryption