Encrypting Text
Hey guys, my friend is trying to encrypt his login for his program.
Example: When people login to his program, it creates their username/password.txt on their desktop or whatever location. Now, what he wants to do is, when it saves, he wants their information to be encrypted so they're more secured that way from keyloggers or anything else.
If anyone has any ideas or something similar please post. If you want me to explain furthermore, please also reply.
Thanks!
Try to find Documentation about RSA encryption, I think it uses a public and private key for encryption and decryption (You would only distribute the public key, lets say, and not the private, which would make you able only to encrypt... or should)
Then to validate if the login is correct, compare both hashes created by the encryption, if they are both equal, the login is valid.
PS: Someone will spoonfeed you eventually with a crappy solution anyway.. so..