Encrypt Password w/MD5

K

Karl

Something like:
string password = "somePassword"
Byte[] unencodedPassword = Encoding.Default.GetBytes(password);
Byte[] encodedPassword = MD5.Create().ComputeHash(unencodedPassword);
return BitConverter.ToString(encodedPassword);

Karl
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Cant encrypt a server disk with fernet PYTHON3 0
md5 hashses 1
Need help with coding project 0
Output confusion 2
Another Password Confirmation 2
Encryption 6
Password confirmation issue 5
HMAC-MD5 5

Members online

Forum statistics

Threads
473,743
Messages
2,569,478
Members
44,898
Latest member
BlairH7607

Latest Threads

Top