文章分类 -  安全

摘要:md5加密解密 public static string MD5(string input) { StringBuilder hash = new StringBuilder(); MD5CryptoServiceProvider md5provider = new MD5CryptoServiceProvider... 阅读全文
posted @ 2018-12-27 16:01 事理 阅读(134) 评论(0) 推荐(0)
摘要:改进:将SHA1改为SHA256,提高安全性测试 阅读全文
posted @ 2017-04-29 23:13 事理 阅读(9582) 评论(0) 推荐(0)
摘要:using System; using System.Security.Cryptography; using System.Text; /// /// RSA加密解密 /// public static class RSAEncrypt { /// /// generate private key and public key arr[0] for private ke... 阅读全文
posted @ 2017-04-15 16:41 事理 阅读(265) 评论(0) 推荐(0)
摘要:文章转载自http://jingyan.baidu.com/article/20b68a8856821b796cec6280.html 密码学中的高级加密标准(Advanced Encryption Standard,AES),又称Rijndael加密法,是美国联邦政府采用的一种区块加密标准。这个标 阅读全文
posted @ 2015-06-03 09:22 事理 阅读(11182) 评论(0) 推荐(0)