摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShiQuan.Security { /// <summary> /// Base64编码可用于在HTTP环境下传递较长的标识信息。 /// </s 阅读全文
posted @ 2019-10-22 18:21
DarJeely
阅读(253)
评论(0)
推荐(0)
摘要:
using System; using System.IO; using System.Security.Cryptography; using System.Text; namespace CloverNet.SecurityTool { public partial class SecurityTool { public static class AES { //默认密钥向量 private 阅读全文
posted @ 2019-10-22 18:19
DarJeely
阅读(640)
评论(0)
推荐(0)
摘要:
using System; using System.IO; using System.Linq; using System.Security.Cryptography; using System.Text; namespace Miraclesoft.SecurityLibrary { /// <summary> /// 使用加密服务提供程序 (CSP) 版本的数据加密标准 (System.Se 阅读全文
posted @ 2019-10-22 18:17
DarJeely
阅读(255)
评论(0)
推荐(0)
摘要:
using System; using System.IO; using System.Security.Cryptography; using System.Text; namespace NugetLibs.HelpTool { /// <summary> /// 加解密帮助类 /// </summary> public class EncryptHelper { #region 默认密钥定义 阅读全文
posted @ 2019-10-22 18:09
DarJeely
阅读(282)
评论(0)
推荐(0)
摘要:
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 阅读全文
posted @ 2019-10-22 18:04
DarJeely
阅读(1183)
评论(0)
推荐(0)
摘要:
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Security.Cryptography; using System.Text; namespace DESFile { /// /// 异常处理类 /// ... 阅读全文
posted @ 2019-10-22 17:57
DarJeely
阅读(291)
评论(0)
推荐(0)
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CommonLib { public class Decryptions { /// <summary> /// Base64解密 /// </su 阅读全文
posted @ 2019-10-22 17:51
DarJeely
阅读(305)
评论(0)
推荐(0)
摘要:
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 阅读全文
posted @ 2019-10-22 17:47
DarJeely
阅读(1362)
评论(1)
推荐(0)
摘要:
// // <copyright file="SHA1.cs" company="720U Enterprises">// * copyright: (C) 2017 720U科技有限公司 版权所有。// * version : 1.0.0.0// * author : rongbo// * fil 阅读全文
posted @ 2019-10-22 17:43
DarJeely
阅读(318)
评论(0)
推荐(0)
摘要:
// // 使用DES(数据加密算法)对数据进行加密/解密的类 // using System; using System.IO; using System.Security.Cryptography; using System.Text; namespace Encrypt { /// <summary> /// 使用DES(数据加密算法)对数据进行加密/解密的类 /// </summary> 阅读全文
posted @ 2019-10-22 17:38
DarJeely
阅读(261)
评论(0)
推荐(0)
摘要:
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 阅读全文
posted @ 2019-10-22 17:16
DarJeely
阅读(377)
评论(0)
推荐(0)
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EncryptBLL { public interface IEncrypt { string E... 阅读全文
posted @ 2019-10-22 17:11
DarJeely
阅读(551)
评论(0)
推荐(0)
摘要:
#AesEncrypt:Aes加密/解密示例项目 <br> 附件中的“AesEncrypt.zip”是本项目的exe文件,可直接下载下来运行和查看。 *高级加密标准(英语:Advanced Encryption Standard,缩写:AES),在密码学中又称Rijndael加密法,是美国联邦政府采 阅读全文
posted @ 2019-10-22 16:58
DarJeely
阅读(1963)
评论(0)
推荐(0)
摘要:
using System; using System.Text; using System.Security.Cryptography; using System.IO; namespace DESPwd { public class DESUtil { static DESCryptoServiceProvider des = new DESCryptoServiceProvider(); pu 阅读全文
posted @ 2019-10-22 16:53
DarJeely
阅读(1152)
评论(0)
推荐(0)
摘要:
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 阅读全文
posted @ 2019-10-22 16:50
DarJeely
阅读(739)
评论(0)
推荐(0)
摘要:
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 { ... 阅读全文
posted @ 2019-10-22 16:37
DarJeely
阅读(301)
评论(0)
推荐(0)
摘要:
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-... 阅读全文
posted @ 2019-10-22 12:00
DarJeely
阅读(859)
评论(0)
推荐(0)
摘要:
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 阅读全文
posted @ 2019-10-22 11:40
DarJeely
阅读(453)
评论(0)
推荐(0)
摘要:
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 阅读全文
posted @ 2019-10-22 11:33
DarJeely
阅读(383)
评论(0)
推荐(0)
摘要:
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... 阅读全文
posted @ 2019-10-22 11:26
DarJeely
阅读(383)
评论(0)
推荐(0)
摘要:
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 阅读全文
posted @ 2019-10-22 11:19
DarJeely
阅读(567)
评论(0)
推荐(0)
摘要:
DESEncrypt.cs FrmEncrypt.cs 阅读全文
posted @ 2019-10-22 11:10
DarJeely
阅读(198)
评论(0)
推荐(0)
摘要:
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 阅读全文
posted @ 2019-10-22 10:52
DarJeely
阅读(501)
评论(0)
推荐(0)
摘要:
using System; using System.Collections.Generic; using System.Text; using System.Security.Cryptography; using System.IO; namespace Ecan.Crypt { public class EcanCryptography { /... 阅读全文
posted @ 2019-10-22 10:44
DarJeely
阅读(396)
评论(0)
推荐(0)

浙公网安备 33010602011771号