Small use of MD5 encryption in Java

Source: Internet
Author: User

The recent project needs to use the MD5 encryption, has looked on the net oneself.

 Packagecom.wxgs.ch01;Importjava.security.MessageDigest;Importjava.security.NoSuchAlgorithmException;ImportSun.misc.BASE64Encoder; Public classTESTMD { Public Static voidMain (string[] args) {String oldpwd=md5add ("123456"); String newpwd=md5add ("123456"); if(Newpwd.equals (oldpwd)) {System.out.println ("Ture"); }Else{System.out.println ("False"); }    }    Staticstring Md5add (String str) {string newstr; Try{messagedigest MD5=messagedigest.getinstance ("MD5"); Base64encoder Base64encoder=NewBase64encoder (); //Encrypt stringNewstr=Base64encoder.encode (Md5.digest (Str.getbytes ())); } Catch(nosuchalgorithmexception e) {//TODO auto-generated Catch blockE.printstacktrace (); Newstr= "Fasle"; }        returnNewstr; }}

Small use of MD5 encryption in Java

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.