zoukankan      html  css  js  c++  java
  • 数据加密和解密


                
    if(!File.Exists("c:\\user.ini"))
                
    {
                    StreamWriter sw 
    = new StreamWriter("c:\\user.ini");
                    
    string strName = tbName.Text;
                    
    string strPass = tbPass.Text;
                    
    string strEncryPass = System.Web.Security.FormsAuthentication.
                        HashPasswordForStoringInConfigFile(strPass,
    "md5");
                    sw.WriteLine(strName);
                    sw.WriteLine(strEncryPass);
                    sw.Close();
                    
    // 数据加密函数System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(strPass,"md5")
                }

                
    else
                
    {
                    
    //从user.ini中读出保存的用户名称和密码,进行比较
                    StreamReader sr = new StreamReader("c:\\user.ini");
                    
    string strSaveName = sr.ReadLine();
                    
    string strSavePass = sr.ReadLine();
                    sr.Close();
                    
    string strInputPass = System.Web.Security.FormsAuthentication
                        .HashPasswordForStoringInConfigFile(tbPass.Text,
    "md5");
                    
    if(strSaveName!=tbName.Text||strSavePass!=strInputPass)
                    
    {
                        Response.Write(
    "用户名称或密码错误!");
                        mainPanel.Visible 
    = false;
                    }

                    
    else
                        Response.Write(
    "<script language = javascript>alert('成功登录!')</script>");
                }
    数据加密
        方法一:
      
  • 相关阅读:
    Vue.Draggable/SortableJS 的排序功能,在VUE中的使用
    vue项目中安装使用echarts
    CSS3美化有序列表
    Git 设置
    javascript 使用btoa和atob来进行Base64转码和解码
    vue 裁剪图片,插件Cropper的使用
    PHPEXCEL xls模板导入,及格式自定义:合并单元格、加粗、居中等操作
    HTML5的 input:file上传 以及 类型控制
    phpexcel 导出到xls文件的时候出现乱码解决
    Python+Selenium+PIL+Tesseract真正自动识别验证码进行一键登录
  • 原文地址:https://www.cnblogs.com/ghd258/p/254963.html
Copyright © 2011-2022 走看看