随笔分类 - 加解密
摘要:using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Security.Cryptography; using System.Text; using System.Threading.Tasks; namespace Mask { public class A
阅读全文
摘要:using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Security.Cryptography; using System.Text; namespace DESFile { /// /// 异常处理类 /// ...
阅读全文
摘要: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 { ...
阅读全文
摘要:using System; using System.IO; using System.Security.Cryptography; using System.Text; using System.Web.Security; namespace Common.Utility { /// /// Author:Kt /// Date Created:2011-04-...
阅读全文
摘要:using System.Text; namespace Cipher.Algorithm { static class Caesar { static public string Encrypt(string input, int key) { StringBuilder sb = new StringBuilder(); for(int i = 0; i < input.Length; ++i
阅读全文
摘要: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
阅读全文
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.Linq; using System.Text; using Syst...
阅读全文
摘要:using System; using System.Text; using System.Security.Cryptography; using System.IO; using System.Security.Cryptography.X509Certificates; using System.Xml; using Org.BouncyCastle.Math; using Org.Boun
阅读全文
摘要:DESEncrypt.cs FrmEncrypt.cs
阅读全文
摘要:using Gaea.MySql; using System; using System.Data; using System.IO; using System.Security.Cryptography; using Microsoft.Extensions.DependencyInjection; using System.Text; using System.Threading; using
阅读全文
摘要:using System; using System.Collections.Generic; using System.Text; using System.Security.Cryptography; using System.IO; namespace Ecan.Crypt { public class EcanCryptography { /...
阅读全文