JAVA 는 MD5 등록 로그 인 암호 화 인 스 턴 스 코드 를 간단하게 실현 합 니 다.

6718 단어 JAVAMD5
개발 환경:jdk 1.7,eclipse
프레임 워 크:springmvc,mybatis
도구:maven
다음 코드 를 복사 하면 MD5 암호 화 를 실현 할 수 있 습 니 다.
mave 프로젝트 를 만 들 고 웹 을 추가 합 니 다.모 르 겠 어 요.검색 해 보시 면 됩 니 다.
가입 한 JSP 페이지 코드 는 다음 과 같 습 니 다.

<%@ page language="java" contentType="text/html; charset=utf-8"
  pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<script type="text/javascript" src="js/jQuery-2.2.0.min.js"></script>
<script type="text/javascript" src="md5/jquery.md5.js"></script>
<title>Insert title here</title>
</head>
<body>
<form action="insertUser" method="post" id="myForm">
    <table>
      <tr>
        <td>   :</td>
        <td>
        <input type="text" id="userName" name="user_name" >
        <input type="hidden" id="pwd" name="user_psw">
        <div id="userNameInfo"></div>
        </td>
      </tr>
      <tr>
        <td>  :</td>
        <td><input type="text" id="password" name="password" onblur="mdjia()"></td>
      </tr>
      <tr>
        <td><input type="button" value="    hash " ></td>
        <td><input type="submit" value="    "></td>
      </tr>
    </table>
  </form>
</body>
<script type="text/javascript">

function mdjia(){
  var password=$("#password").val();
  var pwd=$.md5(password);
  alert(pwd);
  $("#pwd").val(pwd);
}

</script>
</html>

UserDto 클래스 를 직접 만들어 야 합 니 다.저 는 UserDto 속성 으로 값 을 전달 합 니 다.
jQuery MD5 도 도입 해 야 합 니 다.검색 해 보 세 요.이 파일 을 어떻게 이 위 에 올 려 서 다운로드 하 라 고 하 는 지 모 르 겠 습 니 다.
JSP 로그 인 페이지 의 코드,

<%@ page language="java" contentType="text/html; charset=utf-8"
  pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<script type="text/javascript" src="js/jQuery-2.2.0.min.js"></script>
<script type="text/javascript" src="md5/jquery.md5.js"></script>
<title>MD5  </title>
</head>
<body>
<form action="authUser" method="post" id="myForm">
    <table>
      <tr>
        <td>   :</td>
        <td>
        <input type="text" id="userName" name="user_name" >
        <input type="hidden" id="pwd" name="user_psw">
        <div id="userNameInfo"></div>
        </td>
      </tr>
      <tr>
        <td>  :</td>
        <td><input type="text" id="password" name="password" onblur="mdjia()"></td>
      </tr>
      <tr>
        <td><input type="button" value="    hash " ></td>
        <td><input type="submit" value="    "></td>
      </tr>
    </table>
  </form>


</body>
<script type="text/javascript">

function mdjia(){
  var password=$("#password").val();
  var pwd=$.md5(password);
  alert(pwd);
  $("#pwd").val(pwd);
}

</script>
</html>

이어서 배경 코드 를 쓰 세 요.

package com.test.controller;

import javax.annotation.Resource;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

import com.test.dao.UserDao;
import com.test.model.UserDto;
/**
 * 
 * @author     
 *
 */
@Controller
public class UserLogin {  
  @Resource
  UserDao userDao;  
  /*
   *     
   */
  @RequestMapping("/insertUser")
  public ModelAndView insertUser(UserDto userDto){
    //    ,          ,      ,      
    String s=userDto.getUser_psw();
    String smi=convertMD5(s);
    userDto.setUser_psw(smi);
    userDao.insertUser(userDto);
    return new ModelAndView("NewFile.jsp");
  }
  /*
   *      
   */
  @RequestMapping("/authUser")
  public ModelAndView authUser(UserDto userDto){
    int i=0;
    //                  
    String s=userDto.getUser_psw();
    String smi=convertMD5(s);
    //   ,             
    userDto.setUser_psw(smi);
    try {
      i=userDao.login(userDto);
    } catch (Exception e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }
    if(i==1){
      System.out.println("      ");
    }else{
      System.out.println("      ");
    }  
    return new ModelAndView("NewFile.jsp");
  }

  /** 
     *              ,     
     */ 
  public static String convertMD5(String inStr){ 

    char[] a = inStr.toCharArray(); 
    for (int i = 0; i < a.length; i++){ 
      a[i] = (char) (a[i] ^ 't'); 
    } 
    String s = new String(a); 
    return s; 
  }

}                        


이렇게 해서 간단 한 MD5 암호 화 를 만 들 었 습 니 다.다른 결 성 된 코드 는 모두 간단 해서 다 쓰 지 않 고 논 리 를 알 아 보면 할 수 있다.
데이터베이스 에 저 장 된 비밀 번 호 를 첨부 하 는 것 은 이 렇 습 니 다.

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기