摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CommonLib { public class Decryptions { /// <summary> /// Base64解密 /// </su 阅读全文
摘要:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.W 阅读全文
摘要:
// // <copyright file="SHA1.cs" company="720U Enterprises">// * copyright: (C) 2017 720U科技有限公司 版权所有。// * version : 1.0.0.0// * author : rongbo// * fil 阅读全文
摘要:
// // 使用DES(数据加密算法)对数据进行加密/解密的类 // using System; using System.IO; using System.Security.Cryptography; using System.Text; namespace Encrypt { /// <summary> /// 使用DES(数据加密算法)对数据进行加密/解密的类 /// </summary> 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static System.Console; namespace RSA_Demo { class Program { static void Main(s 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EncryptBLL { public interface IEncrypt { string E... 阅读全文
摘要:
#AesEncrypt:Aes加密/解密示例项目 <br> 附件中的“AesEncrypt.zip”是本项目的exe文件,可直接下载下来运行和查看。 *高级加密标准(英语:Advanced Encryption Standard,缩写:AES),在密码学中又称Rijndael加密法,是美国联邦政府采 阅读全文
摘要:
using System; using System.Text; using System.Security.Cryptography; using System.IO; namespace DESPwd { public class DESUtil { static DESCryptoServiceProvider des = new DESCryptoServiceProvider(); pu 阅读全文
摘要:
using System; using System.Text; using System.Windows.Forms; using System.Security.Cryptography; using System.IO; using System.Collections; namespace test { public partial class frm_DESC : Form { publ 阅读全文
摘要:
using System; using System.IO; using System.Text; using System.Windows.Forms; using System.Security.Cryptography; using System.Web; using System.Text.RegularExpressions; namespace Crypto { ... 阅读全文