程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL加密,md5加密

MySQL加密,md5加密

編輯:MySQL綜合教程

MySQL加密,md5加密


MySQL字段加密和解密

1.加密:aes_encrypt('admin','key')
     解密:aes_decrypt(password,'key')
    
2.雙向加密      通過密鑰去加密,解密的時候的只有知道這個密鑰的人來解密
      加密:encode()
      解密:decode()
      eg:encode('123456' 'adfdgfdhggfh');
           decode(password,'adfdgfdhggfh');
3.PASSWORD('123456')
    password加密是不可逆轉的

4.MD5('123456')

//UserDao 
public User login(Connection con,User user) throws Exception{
        User resultUser=null;
        String sql="select userName,AES_DECRYPT(password,'key') password from t_user where userName=? and AES_DECRYPT(PASSWORD,'key')=?";
        PreparedStatement pstmt=con.prepareStatement(sql);
        pstmt.setString(1, user.getUserName());
        pstmt.setString(2, user.getPassword());
        ResultSet rs=pstmt.executeQuery();
        if(rs.next()){
            resultUser=new User();
            resultUser.setUserName(rs.getString(1));
            resultUser.setPassword(rs.getString(2));
            System.out.println(resultUser.getPassword()+"^^^^^");
        }
        return resultUser;
    }
}
   
 //sql語句 
 insert into t_user (userName,password) values('admin',AES_ENCRYPT('123456','key'));  
 select userName,AES_DECRYPT(password,'key')password from t_user;

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved