Need help?[Help] Encryption/Decryption [Solved] - MPGH - MultiPlayer Game Hacking & Cheats
[Help] Encryption/Decryption [Solved]
Posts 1–12 of 12 · Page 1 of 1
[Help] Encryption/Decryption [Solved]
Someone can teach me how to make my OWN encryption / decryption to strings and etc..? Like..A way to only me can decrypt ..
Well, create your own algorithm to manipulate the string to encrypt it. Then reverse the method to decrypt it. Just research Encryption in general to learn how it's done commonly, what methods are used (i.e using a key to encrypt and decrypt) etc.
Originally Posted by Jason
Well, create your own algorithm to manipulate the string to encrypt it. Then reverse the method to decrypt it. Just research Encryption in general to learn how it's done commonly, what methods are used (i.e using a key to encrypt and decrypt) etc.
hmm Ok, Im gonna search some simple encryptions...
Mark this as solved plz
Exclusive or.
Good luck :L
The best you'd probably be able to do (in fact, I'd be able to do) is mix a few encryption methods together.
We should have a competition of building custom cryptography classes. (Not prime numbers :P)
Marked as solved. You guys should know the deal by now.
Convert the bytes ASCII, then to string UNICODE.. and do it differently back and forth and your good.
A few encryption methods i suggest you study befor going any farther
AES
Poly rc4
BlowFish - my favorite
just 3 of the most used, learn from them and then take the same concept.
Originally Posted by topblast
Convert the bytes ASCII, then to string UNICODE.. and do it differently back and forth and your good.
Err, that kills unicode characters and does nothing else...
Originally Posted by cosconub
A few encryption methods i suggest you study befor going any farther
AES
Poly rc4
BlowFish - my favorite
just 3 of the most used, learn from them and then take the same concept.
Is BlowFish your favourite just because of its name? Cos it's not very secure...
Sry for posting after solved but...
The point of making a decent ecrypting, is that it can't be decrypted (at least easily), so you shouldn't even be able to make a decryption. (like you want to...)
I did one program to encrypt/decrypt , but im tryin to understand the code..