+ 7
Anyone can teach me how to encrypt?
I feel kinda inferior and stupid here. I see many codes where the output is brought about my some kind of encryption, but whenever I try it, I simply can't. How do you encrypt? How? Please help me. Some examples of encryption in Java: https://code.sololearn.com/c65al3P8qlAp/?ref=app https://code.sololearn.com/cKpJv8d3wz68/?ref=app https://code.sololearn.com/cv0EnkQ8dxfP/?ref=app Please help me.
16 ответов
+ 13
here @Amrit is this enough ?
http://www.adrianparr.com/download/Special%20Characters%20Cheat%20Sheet.pdf
Special Characters Cheat Sheet (PDF)
https://appletree.or.kr/quick_reference_cards/Typography-Font/ASCII%20Codes%20Cheat%20Sheet.pdf
ASCII Codes Cheat Sheet.pdf
https://media.cheatography.com/storage/thumb/cheatography_ascii-character-codes-table-and-cheat-sheet.750.jpg
http://www.catonmat.net/images/ascii-cheat-sheet.png
http://www.cheat-sheets.org/saved-copy/characters_cheat_sheet.png
http://i87.photobucket.com/albums/k149/THE11thROCK/terablitz/ascii-codes-0000.png
http://www.cheat-sheets.org/saved-copy/ascii.png
https://i.pinimg.com/736x/df/1c/24/df1c24d02c04b9241397fb06edd124e6--alt-codes-project-management.jpg
http://www.petefreitag.com/cheatsheets/ascii-codes/
ASCII Character Codes CheatSheet - Pete Freitag
http://www.asciitable.com/mobile
Ascii Table - ASCII character codes and html, octal, hex and decimal ...
http://ascii.cl/
ASCII Codes - Table of ascii characters and symbols
+ 12
it's not encryption really just using ascii character codes .
the 1st code just decodes base64 string to plain text.
https://code.sololearn.com/cJviZDwqlJhg/?ref=app
in 2nd code all it does is get next characters in place.
https://code.sololearn.com/cOv67FFa8g4i/?ref=app
+ 12
@Amrit
okay then good luck 🍀with your endeavours 👍😎
fun fact: I had used a ASCII character cheat sheet to create the character shift code in ruby :)
+ 7
@Amrit can you provide the link to the encrypted code mate? just like to see it, if you don't mind.
+ 6
@Ipang
See the updated question.
+ 4
Do you have any examples?
You can't just "encrypt code" because you'd need to decrypt it before running it.
+ 4
Well you can just follow the code to see what happens.
A char[] is more or less just a string, and each character has a so-called "ascii" or "utf-8" "character code", a number, that represents it. Uppercase "A" is 65, for example.
So all you need to do is google "text to ascii code converter" and you are good.
The third example uses binary, which is like our 10-digit-numbers (1,2,3,4,5,6,7,8,9,0) but using just two digits (0,1).
+ 4
@Schindlabua, I get all of that, my question is to help me a bit with the numbers. I understand what they did, but I need the ASCII codes for the characters.
+ 4
Yeah as I said, google for "text to ascii converter"! Heres the first thing that comes up when you google that: http://www.unit-conversion.info/texttools/ascii/
Paste the text you want to numberify in there and you can use that in your code.
+ 4
@Schindlabua, could you give me some image or a link to download a file which contains a table of ASCII codes?
Thanks for that link. Please help me again.
+ 4
@LK, that's more than enough...
+ 4
@LK, actually I wanna create my Platinum code with some encryption.
Thanks.
+ 3
Do you want to obfuscate it so nobody can read it?
+ 2
hope it helps ya ; )
0
colding