How do I create an encrypted string for password?
Category: java.security, viewed: 7682 time(s).
You are creating a user management system that will keep user profile and their credential or password. For security reason you'll need to protect the password, to do this you can use the MessageDigest provided by Java API to encrypt the password. The code example below show you a example how to use it.
Here is the example of our encrypted password:
Plain : secret Encrypted: e5e9fa1ba31ecd1ae84f75caaa474f3a663f05f4
Download Hundreds of Complimentary Industry Resources
Get hundreds of popular Industry magazines, white papers, webinars, podcasts, and more;
all available at no cost to you. With more than 600 complimentary offers, you'll find
plenty of titles to suit your professional interests and needs.
Click Here and Sign up today!
Related Examples
|
|


