码迷,mamicode.com
首页 > 编程语言 > 详细

MD5 in JAVA

时间:2017-06-22 19:10:27      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:env   test   cti   pre   java   repos   pid   bsp   ring   

using Apache Commons

需要引入org.apache.commons.codec.digest.DigestUtils这个包,pom.xml文件配置如下:

<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
<dependency>
    <groupId>commons-codec</groupId>
    <artifactId>commons-codec</artifactId>
    <version>1.10</version>
</dependency>

 

demo代码如下:

@Test
public void givenPassword_whenHashingUsingCommons_thenVerifying()  {
    String hash = "35454B055CC325EA1AF2126E27707052";
    String password = "ILoveJava";
 
    String md5Hex = DigestUtils
      .md5Hex(password).toUpperCase();
         
    assertThat(md5Hex.equals(hash)).isTrue();
}

 

MD5 in JAVA

标签:env   test   cti   pre   java   repos   pid   bsp   ring   

原文地址:http://www.cnblogs.com/jwentest/p/7066694.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!