上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 168 下一页
摘要: 对称加密和分组加密中的四种模式(ECB、CBC、CFB、OFB) 一. AES对称加密: AES加密 分组 二. 分组密码的填充 分组密码的填充 e.g.: PKCS#5填充方式 三. 流密码: 四. 分组密码加密中的四种模式: 3.1 ECB模式 优点: 1.简单; 2.有利于并行计算; 3.误差 阅读全文
posted @ 2019-10-23 09:37 DarJeely 阅读(656) 评论(0) 推荐(0) 编辑
摘要: C# AES的128位、192位、256位加密 AES加密原理,这里就不解释了,自行百度。这里主要细说AES的CBC加密模式下的128位、192位、256位加密区别,参考 对称加密和分组加密中的四种模式(ECB、CBC、CFB、OFB) 。 这三种的区别,主要来自于密钥的长度,16位密钥=128位, 阅读全文
posted @ 2019-10-23 09:35 DarJeely 阅读(2487) 评论(0) 推荐(0) 编辑
摘要: u 博客园 首页 新随笔 联系 订阅 管理 随笔 - 2009 文章 - 1 评论 - 74 u u 博客园 首页 新随笔 联系 订阅 管理 随笔 - 2009 文章 - 1 评论 - 74 博客园 首页 新随笔 联系 订阅 管理 随笔 - 2009 文章 - 1 评论 - 74 C# 处理base 阅读全文
posted @ 2019-10-23 09:29 DarJeely 阅读(590) 评论(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.Security.Cryptography; ... 阅读全文
posted @ 2019-10-23 09:22 DarJeely 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(245) 评论(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 阅读(616) 评论(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 阅读(248) 评论(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 阅读(269) 评论(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 阅读(1154) 评论(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 阅读(280) 评论(0) 推荐(0) 编辑
上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 168 下一页