加密解密
文章平均质量分 77
BMOP
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
分享一个C#的Rabin-Miller素性检验算法
public bool IsProbablePrime(BigInteger source) { int certainty = 2; if (source == 2 || source == 3) return true; if (source < 2 || source % 2 == 0)转载 2014-04-18 20:35:12 · 841 阅读 · 0 评论 -
用C#Numberics库写的简单RSA算法
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原创 2014-04-19 12:38:36 · 980 阅读 · 0 评论 -
DES原理浅析
在学习密码学过程中,我将DES的一个简单的代码发上来(学习学长的代码~),并解释DES原创 2014-04-07 22:44:53 · 1203 阅读 · 1 评论
分享