C#
iO_O_Oi
这个作者很懒,什么都没留下…
展开
-
RSA加密解密
C#实现RSA的加密解密。RSA加密被称之为非对称加密。有一个公钥和私钥。公钥暴露给第三方,进行数据加密。而要解密数据必须要用与之对应的私钥。私钥一般存在服务器中,不对第三方暴露,这样就大大提高了安全性。完成代码见GitHub:https://github.com/GuoMonth/TechPractice/tree/master/C%23/%E5%B7%A5%E5%85%B7%E6%96...原创 2020-03-29 20:59:23 · 911 阅读 · 0 评论 -
LeetCode -- TwoSum
题目:Given an array of integers, returnindicesof the two numbers such that they add up to a specific target.You may assume that each input would haveexactlyone solution, and you may not use the...原创 2019-06-16 13:25:35 · 192 阅读 · 0 评论 -
LeetCode -- AddTowNumbers
两个数相加。题目:You are given twonon-emptylinked lists representing two non-negative integers. The digits are stored inreverse orderand each of their nodes contain a single digit. Add the two number...原创 2019-06-22 16:53:53 · 284 阅读 · 0 评论