zoukankan
html css js c++ java
字符串加密方法
using
System;
using
System.Collections.Generic;
using
System.Text;
using
System.Security.Cryptography;
using
System.IO;
namespace
Component
{
public
class
Security
{
public
Security()
{
}
//
默认密钥向量
private
static
byte
[] Keys
=
{
0x12
,
0x34
,
0x56
,
0x78
,
0x90
,
0xAB
,
0xCD
,
0xEF
}
;
/**/
///
<summary>
///
DES加密字符串
///
</summary>
///
<param name="encryptString">
待加密的字符串
</param>
///
<param name="encryptKey">
加密密钥,要求为8位
</param>
///
<returns>
加密成功返回加密后的字符串,失败返回源串
</returns>
public
static
string
EncryptDES(
string
encryptString,
string
encryptKey)
{
try
{
byte
[] rgbKey
=
Encoding.UTF8.GetBytes(encryptKey.Substring(
0
,
8
));
byte
[] rgbIV
=
Keys;
byte
[] inputByteArray
=
Encoding.UTF8.GetBytes(encryptString);
DESCryptoServiceProvider dCSP
=
new
DESCryptoServiceProvider();
MemoryStream mStream
=
new
MemoryStream();
CryptoStream cStream
=
new
CryptoStream(mStream, dCSP.CreateEncryptor(rgbKey, rgbIV), CryptoStreamMode.Write);
cStream.Write(inputByteArray,
0
, inputByteArray.Length);
cStream.FlushFinalBlock();
return
Convert.ToBase64String(mStream.ToArray());
}
catch
{
return
encryptString;
}
}
/**/
///
<summary>
///
DES解密字符串
///
</summary>
///
<param name="decryptString">
待解密的字符串
</param>
///
<param name="decryptKey">
解密密钥,要求为8位,和加密密钥相同
</param>
///
<returns>
解密成功返回解密后的字符串,失败返源串
</returns>
public
static
string
DecryptDES(
string
decryptString,
string
decryptKey)
{
try
{
byte
[] rgbKey
=
Encoding.UTF8.GetBytes(decryptKey);
byte
[] rgbIV
=
Keys;
byte
[] inputByteArray
=
Convert.FromBase64String(decryptString);
DESCryptoServiceProvider DCSP
=
new
DESCryptoServiceProvider();
MemoryStream mStream
=
new
MemoryStream();
CryptoStream cStream
=
new
CryptoStream(mStream, DCSP.CreateDecryptor(rgbKey, rgbIV), CryptoStreamMode.Write);
cStream.Write(inputByteArray,
0
, inputByteArray.Length);
cStream.FlushFinalBlock();
return
Encoding.UTF8.GetString(mStream.ToArray());
}
catch
{
return
decryptString;
}
}
}
}
查看全文
相关阅读:
Django admin的一些有用定制
django后台中如何在result_list内优雅的显示及使用过滤器?
DataFrame 的函数
pandas的替换和部分替换(replace)
HTML5中的Web Notification桌面右下角通知功能的实现
sqlalchemy 实现select for update
SQLAlchemy 使用经验 (查询 事务 锁表)
concat()
某数据防泄漏 越权修改管理员密码
齐治堡垒机 远程命令执行漏洞[CNVD-2019-20835]
原文地址:https://www.cnblogs.com/pw/p/615060.html
最新文章
4、Flink流处理案例实现-Java
mysql用户授权总结
3、Flink批处理案例实现-Java
2.Flink项目创建
Centos安装zookeeper、kafka
Makefile嵌套执行make
Makefile命令编写和文件包含
Makefile编写规则(四)常用函数
Makefile编写规则(三)条件判断和伪目标
Makefile编写规则(二)文件搜索和隐含规则
热门文章
Makefile编写规则(一)通配符和变量
Makefile简介
动态链接库的显示调用
静态链接库和动态连接库
MongoDB简介
单点登录实现思路及自定义实现方案
加快http请求图片的速度
Python连接Elasticsearch
Django进阶-QuerySet篇
Django-admin使用代理模型
Copyright © 2011-2022 走看看