i used MD5 function to encrypt password ..
but i want to Decrypt that password for login condition where it is not match the same password.
what to do.
Code:
PreparedStatement pstmt=con.prepareStatement("insert into regist values(?,MD5(?),MD5(?),?,?,?,?,?,?,?,?,?,?,?,?)");
pstmt.setString(1,vEmailId);
pstmt.setString(2,vPassword);
pstmt.setString(3,vConfirmPassword);
what to do.
Comment