加密和解密类

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Security.Cryptography;
using System.IO;
using System.Web;

namespace Thewolfs.Framework.Text
{
    
/// <summary>
    
/// 加密类
    
/// </summary>
    public class TwEncode
    {

        
#region MD5加密类型,0为32位md5加密,1为64位md5加密
        
/// <summary>
        
/// 密码加密函数
        
/// </summary>
        
/// <param name="encrypType">加密类型,0为32位md5加密,1为64位md5加密</param>
        
/// <param name="originalStr">加密前字符串</param>
        
/// <returns>md5加密后的字符串</returns>
        private static string EncryptPass(byte encrypType, string originalStr)
        {
            
string strReturn = string.Empty;
            
switch (encrypType)
            {
                
case 0:
                    strReturn 
= System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(originalStr, "MD5");
                    
break;
                
default:
                    strReturn 
= System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(originalStr, "MD5");
                    
break;
            }
            
return strReturn;
            
//throw new System.NotImplementedException();
        }

        
/// <summary>
        
/// 32位的MD5加密
        
/// </summary>
        
/// <param name="toCryString"></param>
        
/// <returns></returns>
        public static string EncodeByMD5_32(string toCryString)
        {
            
return TwEncode.EncryptPass(0, toCryString);
        }

        
/// <summary>
        
/// 64位的MD5加密
        
/// </summary>
        
/// <param name="toCryString"></param>
        
/// <returns></returns>
        public static string EncodeByMD5_64(string toCryString)
        {
            
return TwEncode.EncryptPass(1, toCryString);
        }

        
#endregion

        
#region Base64加密码 / 解密
        
/// <summary>
        
/// 用Base64加密
        
/// </summary>
        
/// <param name="strText"></param>
        
/// <returns></returns>
        public static string EncodeByBase64(String strText)
        {
            
return Encrypt(strText, "&%#@?,:*");
        }

        
/// <summary>
        
/// 解密Base64加密的密码
        
/// </summary>
        
/// <param name="strText"></param>
        
/// <returns></returns>
        public static String DecodeByBase64(String strText)
        {
            
return Decrypt(strText, "&%#@?,:*");
        }

        
/// <summary>
        
/// Base64加密函数
        
/// </summary>
        
/// <param name="strText"></param>
        
/// <param name="strEncrKey"></param>
        
/// <returns></returns>
        private static String Encrypt(String strText, String strEncrKey)
        {
            Byte[] byKey 
= { };
            Byte[] IV 
= { 0x120x340x560x780x900xAB0xCD0xEF };
            
try
            {
                byKey 
= System.Text.Encoding.UTF8.GetBytes(strEncrKey.Substring(08));
                DESCryptoServiceProvider des 
= new DESCryptoServiceProvider();
                Byte[] inputByteArray 
= Encoding.UTF8.GetBytes(strText);
                MemoryStream ms 
= new MemoryStream();
                CryptoStream cs 
= new CryptoStream(ms, des.CreateEncryptor(byKey, IV), CryptoStreamMode.Write);
                cs.Write(inputByteArray, 
0, inputByteArray.Length);
                cs.FlushFinalBlock();
                
return Convert.ToBase64String(ms.ToArray());
            }
            
catch (Exception ex)
            {
                
return ex.Message + ex.ToString() + ex.Source;
            }
        }

        
/// <summary>
        
/// Base64解密函数
        
/// </summary>
        
/// <param name="strText"></param>
        
/// <param name="sDecrKey"></param>
        
/// <returns></returns>
        private static String Decrypt(String strText, String sDecrKey)
        {
            Byte[] byKey 
= { };
            Byte[] IV 
= { 0x120x340x560x780x900xAB0xCD0xEF };
            Byte[] inputByteArray 
= new byte[strText.Length];
            
try
            {
                byKey 
= System.Text.Encoding.UTF8.GetBytes(sDecrKey.Substring(08));
                DESCryptoServiceProvider des 
= new DESCryptoServiceProvider();
                inputByteArray 
= Convert.FromBase64String(strText);
                MemoryStream ms 
= new MemoryStream();
                CryptoStream cs 
= new CryptoStream(ms, des.CreateDecryptor(byKey, IV), CryptoStreamMode.Write);
                cs.Write(inputByteArray, 
0, inputByteArray.Length);
                cs.FlushFinalBlock();
                System.Text.Encoding encoding 
= System.Text.Encoding.UTF8;
                
return encoding.GetString(ms.ToArray());
            }
            
catch (Exception ex)
            {
                
return ex.Message + ex.ToString() + ex.Source;
            }
        }
        
#endregion

        
#region SHA1 加密 40位
        
/// <summary>
        
/// 使用SHA1加密字符串。 40位
        
/// </summary>
        
/// <param name="inputString">输入字符串。</param>
        
/// <returns>加密后的字符串。(40个字符)</returns>
        public static string EncodeBySHA1(string inputString)
        {
            SHA1CryptoServiceProvider sha1 
= new SHA1CryptoServiceProvider();
            
byte[] encryptedBytes = sha1.ComputeHash(Encoding.ASCII.GetBytes(inputString));
            StringBuilder sb 
= new StringBuilder();
            
for (int i = 0; i < encryptedBytes.Length; i++)
            {
                sb.AppendFormat(
"{0:x2}", encryptedBytes[i]);
            }
            
return sb.ToString();
        }
        
#endregion

        
#region DES 加密/解密
        
private static byte[] key = ASCIIEncoding.ASCII.GetBytes("caikelun");
        
private static byte[] iv = ASCIIEncoding.ASCII.GetBytes("12345678");

        
/// <summary>
        
/// DES加密。
        
/// </summary>
        
/// <param name="inputString">输入字符串。</param>
        
/// <returns>加密后的字符串。</returns>
        public static string EncodeByDES(string inputString)
        {
            MemoryStream ms 
= null;
            CryptoStream cs 
= null;
            StreamWriter sw 
= null;

            DESCryptoServiceProvider des 
= new DESCryptoServiceProvider();
            
try
            {
                ms 
= new MemoryStream();
                cs 
= new CryptoStream(ms, des.CreateEncryptor(key, iv), CryptoStreamMode.Write);
                sw 
= new StreamWriter(cs);
                sw.Write(inputString);
                sw.Flush();
                cs.FlushFinalBlock();
                
return Convert.ToBase64String(ms.GetBuffer(), 0, (int)ms.Length);
            }
            
finally
            {
                
if (sw != null) sw.Close();
                
if (cs != null) cs.Close();
                
if (ms != null) ms.Close();
            }
        }

        
/// <summary>
        
/// DES解密。
        
/// </summary>
        
/// <param name="inputString">输入字符串。</param>
        
/// <returns>解密后的字符串。</returns>
        public static string DecodeByDES(string inputString)
        {
            MemoryStream ms 
= null;
            CryptoStream cs 
= null;
            StreamReader sr 
= null;

            DESCryptoServiceProvider des 
= new DESCryptoServiceProvider();
            
try
            {
                ms 
= new MemoryStream(Convert.FromBase64String(inputString));
                cs 
= new CryptoStream(ms, des.CreateDecryptor(key, iv), CryptoStreamMode.Read);
                sr 
= new StreamReader(cs);
                
return sr.ReadToEnd();
            }
            
finally
            {
                
if (sr != null) sr.Close();
                
if (cs != null) cs.Close();
                
if (ms != null) ms.Close();
            }
        }

        
#endregion

        
#region HTML & URL地址加密 - .NET的方法
        
/// <summary>
        
/// URL地址加密 - .NET的方法
        
/// </summary>
        
/// <param name="strUrl">URL地址</param>
        
/// <returns></returns>
        public static string UrlEncode(string strUrl)
        {
            
if (string.IsNullOrEmpty(strUrl))
            {
                
return strUrl;
            }
            
return System.Web.HttpUtility.UrlEncode(strUrl);
        }

        
/// <summary>
        
/// URL地址解密 - .NET的方法
        
/// </summary>
        
/// <param name="strURL">加密过的URL地址</param>
        
/// <returns></returns>
        public static string UrlDecode(string strURL)
        {
            
if (string.IsNullOrEmpty(strURL))
            {
                
return strURL;
            }

            
return System.Web.HttpUtility.UrlEncode(strURL);
        }


        
/// <summary>
        
/// 返回 HTML 字符串的编码结果
        
/// </summary>
        
/// <param name="str">字符串</param>
        
/// <returns>编码结果</returns>
        public static string HtmlEncode(string str)
        {
            
return HttpUtility.HtmlEncode(str);
        }

        
/// <summary>
        
/// 返回 HTML 字符串的解码结果
        
/// </summary>
        
/// <param name="str">字符串</param>
        
/// <returns>解码结果</returns>
        public static string HtmlDecode(string str)
        {
            
return HttpUtility.HtmlDecode(str);
        }
        
#endregion

        
#region SHA256函数
        
/// <summary>
        
/// SHA256函数
        
/// </summary>
        
/// <param name="str">原始字符串</param>
        
/// <returns>SHA256结果</returns>
        public static string SHA256(string str)
        {
            
byte[] SHA256Data = Encoding.UTF8.GetBytes(str);
            SHA256Managed Sha256 
= new SHA256Managed();
            
byte[] Result = Sha256.ComputeHash(SHA256Data);
            
return Convert.ToBase64String(Result);  //返回长度为44字节的字符串
        }
        
#endregion


    }
}

转载于:https://www.cnblogs.com/netAICode/archive/2009/09/24/1572983.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/381219.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

linux 如何打包分区文件,Linux基础------文件打包解包---tar命令,文件压缩解压---命令gzip,vim编辑器创建和编辑正文件,磁盘分区/格式化,软/硬链接...

作业一&#xff1a;1)将用户信息数据库文件和组信息数据库文件纵向合并为一个文件/1.txt(覆盖)cat /etc/passwd /etc/group > /1.txt2)将用户信息数据库文件和用户密码数据库文件纵向合并为一个文件/2.txt(追加)cat /etc/passwd /etc/shadow >> /2.txt3)将/1.txt、/2.…

python处理中文字符串_处理python字符串中的中文字符

# -*- coding:utf-8 -*-import sys,ostxta open(a.txt,r)str for line in txta:str line.strip().decode(utf-8)txta.close()for word in str:print word.encode(utf-8)直接输出&#xff0c;是会乱码的&#xff0c;得先解码&#xff0c;再编码。参考网址&#xff1a;http://…

继承之接口知识点和思考练习

知识点 接口是一种数据结构&#xff0c;它包含了一组函数型方法&#xff0c;通过这组数据结构&#xff0c;用户代码可以调用组件的功能。 访问修饰符 interface 接口名 { 接口体 } 接口声明时&#xff0c;注意一下几个方面&#xff1a; 1&#xff09;访问修饰符只能是new…

sqlserver大数据表操作慢_架构师必看!操作日志系统搭建秘技

​在Java开发中&#xff0c;我们经常会遇到一个棘手的问题&#xff1a;记录用户的操作行为。某些操作是相对简单的&#xff0c;我们可以逐条记录。但是某些操作行为却很难记录&#xff0c;例如编辑操作。在某一次操作中&#xff0c;用户可能编辑了对象A的几个属性&#xff0c;而…

linux 卸载sphinx,sphinx管理脚本,实现sphinx启动、关闭、重启、生成索引功能 | linux运维小站–linux系统架构_服务器运维_Linux运维工程师工作手札...

最新sphin问题比较多&#xff0c;生成主索引后无法连接上sphinx的&#xff0c;需要重启searchd进程&#xff0c;为了方便管理sphinx&#xff0c;参考网上资料&#xff1a;http://blog.csdn.net/yagas/article/details/6718532 修改一个适合自己的sphinx管理脚本。[codesyntax…

面试题(C++09:Autodesk)

网上收集的Autodesk面试题&#xff1a;1. 在类的普通成员函数中调用虚函数&#xff0c;情况是怎么样的&#xff1f; 具体来说&#xff0c;问题如下&#xff1a; 在类的普通成员函数fun1中调用了本类中的虚函数vfun2。 如果在外部有该类的对象指针pobj&#xff0c…

sql共享功能目录无法更改_大企业数据库服务首选!AliSQL这几大企业级功能你不可不知...

MySQL代表了开源数据库的快速发展&#xff0c;从2004年前后的Wiki、WordPress等轻量级Web 2.0应用起步&#xff0c;到2010年阿里巴巴在电商及支付场景大规模使用MySQL数据库&#xff0c;再到2012年开始阿里云RDS for MySQL为成千上万家客户提供可靠的关系数据库服务&#xff0c…

linux制作成后台服务,把dotnetcore 控制台app设置成linux后台服务

1&#xff0c;新建service文件vimvim /etc/systemd/system/dotnetTest.serviceip内容[Unit]Descriptiondotnet consoleit[Service]ioWorkingDirectory/home/useeinfo/publishconsoleExecStart/usr/bin/dotnet /home/useeinfo/publish/ConsoleApp3.dlltestRestartalwaysserviceS…

linux中汇编语言指令li,汇编语言IMUL指令:有符号数乘法

IMUL(有符号数乘法)指令执行有符号整数乘法。与 MUL 指令不同&#xff0c;IMUL 会保留乘 积的符号&#xff0c;实现的方法是&#xff0c;将乘积低半部分的最高位符号扩展到高半部分。x86 指令集支持三种格式的 IMUL 指令&#xff1a;单操作数、双操作数和三操作数。单操作数格式…

递归下降语法分析器的构建_一文了解函数式查询优化器Spark SQL Catalyst

大数据技术与架构点击右侧关注&#xff0c;大数据开发领域最强公众号&#xff01;暴走大数据点击右侧关注&#xff0c;暴走大数据&#xff01;记录一下个人对sparkSql的catalyst这个函数式的可扩展的查询优化器的理解&#xff0c;目录如下&#xff1a;0. Overview1. Catalyst工…

面试英语自我介绍的常用词汇

面试英语自我介绍的常用词汇 面试英语自我介绍的常用词汇 Words & Expressions&范文 精华汇总贴 想 找一份满意的工作吗&#xff1f;面试中面对外国老板连珠炮似的提问&#xff0c;有没有觉得心慌意乱、无所适从&#xff1f;求职过程中面试尤为重要&#xff0c;回答问题…

被远程机器长时间无响应 (错误码:[308])_自动折叠式“Rollbot”为完全不受束缚的软机器人铺平了道路...

如今&#xff0c;大多数软机器人依靠外部电源和控制&#xff0c;使它们与车外系统连接或用硬件组装。现在&#xff0c;来自哈佛大学约翰保尔森工程与应用科学学院&#xff08;SEAS&#xff09;和加州理工学院的研究人员开发了受折纸结构启发的软机器人系统&#xff0c;可以根据…

kali linux编辑记事本,kali linux操作系统

最近在研究kali linux***操作系统&#xff0c;可能有许多人还不知道这个系统&#xff0c;但是&#xff0c;我可以告诉大家&#xff0c;你想成为电影***那样&#xff0c;这个操作系统能够帮助你实现Kali Linux 前身是著名***测试系统BackTrack &#xff0c;是一个基于 Debian 的…

如何系统地自学python~知乎_经验分享 | 如何系统地自学 Python?

是否非常想学好 Python&#xff0c;一方面被琐事纠缠&#xff0c;一直没能动手&#xff0c;另一方面&#xff0c;担心学习成本太高&#xff0c;心里默默敲着退堂鼓?幸运的是&#xff0c;Python 是一门初学者友好的编程语言&#xff0c;想要完全掌握它&#xff0c;你不必花上太…

飞信SDK内容【转载】

使用飞信SDK开发短信收发程序2008-10-13 13:57利用飞信的协议可以在线收发消息&#xff0c;或是向手机发送消息。由此&#xff0c;可以自己来完成一个IM工具。本文即是对飞信SDK的使用方法&#xff0c;及如何开发作一个说明。一、引用FetionSDK飞信是采用C#开发的&#xff0c;所…

linux中将光标与操作系统,linux操作系统基本命令介绍(2)

whoami 查看当前用户su - 用户名 切换用户的同时再切换用户空间创建工作组(注意&#xff1a;需要切换到root用户)groupadd 组名删除工作组groupdel 组名修改用户所在组usermod -g 用户名 组名添加用户账号useradd 用户名-d 指定用户登录系统时的主目录&#xff0c;如果不使用该…

vm磁盘映射 不能启动_Oracle的启动与关闭-数据库(4)

Oracle数据的库的启动与关闭&#xff0c;为了节约资源消耗&#xff0c;把我们用到的服务开启&#xff0c;这样对于项目开发也有好处。1 Oracle 启动Oracle 是通过系统的服务来启动的。图1. 找到计算机管理图2. 找到服务&#xff0c;点击图3. Oracle相关启动项图4. 如何关闭和启…

ASP.NET Session详解

原文 http://www.zxbc.cn/html/20090711/72153.html 当用户在 Web 应用程序中导航 ASP.NET 页时&#xff0c;ASP.NET 会话状态使您能够存储和检索用户的值。HTTP 是一种无状态协议。这意味着 Web 服务器会将针对页面的每个 HTTP 请求作为独立的请求进行处理。服务器不会保留以前…

python datetime.date 和数据库date_Python成为专业人士笔记-date 对象、time 对象及datetime用法深度剖析...

“专业人士笔记”系列目录&#xff1a;创帆云&#xff1a;Python成为专业人士笔记--强烈建议收藏&#xff01;每日持续更新&#xff01;​zhuanlan.zhihu.com将字符串解析为对应时区的datetime对象Python 3.2在将字符串解析为datetime对象时支持%z格式&#xff1a;import datet…

linux充当防火墙,Linux下主机充当防火墙的巧妙应用之iptables!.doc

Linux下主机充当防火墙的巧妙应用之iptables!Linux下主机充当防火墙的巧妙应用之iptables!实验综合拓扑图:注意事项&#xff1a;防火墙由Red Hat Linux 5.4 版本的机器充当&#xff0c;eth0 使用Host-only (vmware 1)&#xff0c;eth1 使用Bridge(本地连接),eth2(vmware 2)前期…