知识大全 ASP.NET中使用MD5和SHA1算法加密
Posted 密码
篇首语:不登高山,不知天之高也;不临深溪,不知地之厚也。本文由小常识网(cha138.com)小编为大家整理,主要介绍了知识大全 ASP.NET中使用MD5和SHA1算法加密相关的知识,希望对你有一定的参考价值。
ASP.NET中使用MD5和SHA1算法加密 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!
你的主页或者你管理的网站有各种密码需要保护 把密码直接放在数据库或者文件中存在不少安全隐患 所以密码加密后存储是最常见的做法 在ASP NET中实现加密非常容易
NET SDK中提供了CookieAuthentication类 其中的HashPasswordForStoringInConfigFile方法可直接使用MD 和SHA 算法 例子如下 file: encrypting aspx<%@ Page language= c# Codebehind= encrypting cs AutoEventWireup= false Inherits= encrypting encrypting %><><head><meta name= GENERATOR Content= Microsoft Visual Studio ><meta name= CODE_LANGUAGE Content= C# ></head><body><form method= post runat= server ><asp:TextBox id=TextBox runat= server ></asp:TextBox><asp:Button id=Button runat= server Text= encrypting ></asp:Button>Encrypting Password(MD ):<asp:Label id=MD runat= server ></asp:Label></form></body></>file:encrypting csnamespace encryptingusing System;using System Collections;using System ComponentModel;using System Data;using System Drawing;using System Web;using System Web SessionState;using System Web UI;using System Web UI WebControls;using System Web UI HtmlControls;using System Web Security;/// <summary>/// Summary description for encrypting /// </summary>public class encrypting : System Web UI Page protected System Web UI WebControls Label MD ; protected System Web UI WebControls Button Button ; protected System Web UI WebControls TextBox TextBox ; public encrypting() Page Init += new System EventHandler(Page_Init); protected void Page_Load(object sender EventArgs e) if (!IsPostBack) // // Evals true first time browser hits the page // protected void Page_Init(object sender EventArgs e) // // CODEGEN: This call is required by the ASP+ Windows Form Designer // InitializeComponent(); /// <summary> /// Required method for Designer support do not modify /// the contents of this method with the code editor /// </summary> private void InitializeComponent() Button Click += new System EventHandler (this Button _Click); this Load += new System EventHandler (this Page_Load); public void Button _Click (object sender System EventArgs e) MD Text = CookieAuthentication HashPasswordForStoringInConfigFile(TextBox Text MD ); //SHA use CookieAuthentication HashPasswordForStoringInConfigFile(TextBox Text SHA );
cha138/Article/program/net/201311/13925相关参考
用ASP.Net中的自带类进行MD5加密 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!
java中使用MD5加密算法进行加密 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 在各种应用系
Java中常用的加密算法MD5,SHA,RSA 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! M
JAVA版MD5加密算法 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! packagesf_md
java中使用MD5对数据密码加密 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! publicc
ASP.Net中如何实现RSA加密 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 在我们实际运用
知识大全 加密和解密ASP.NET配置文件(Web.config)
加密和解密ASP.NET配置文件(Web.config) 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下
无论什么时候只要我们使用数据库开发网站我们就必须保护用户资料这非常必要 黑客可以盗窃口令个人隐私遭到严重的破坏最好的方法就是不储存原始密码而是加密后再放到数据库中 当我们想验证用户时我们只需将
知识大全 ASP.NET入门教程 12.10.1加密和基于消息的安全性
ASP.NET入门教程12.10.1加密和基于消息的安全性 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一
可变MD5加密(Java实现) 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 可变在这里含义很简