码迷,mamicode.com
首页 >  
搜索关键字:cryptography    ( 396个结果
X509Store 类
标题:X509Store 类 地址:https://docs.microsoft.com/zh-cn/dotnet/api/system.security.cryptography.x509certificates.x509store?view=netframework-4.8 表示 X.509 存 ...
分类:其他好文   时间:2019-12-06 19:47:13    阅读次数:150
X509Certificate 类
地址:https://docs.microsoft.com/zh-cn/dotnet/api/system.security.cryptography.x509certificates.x509certificate?view=netframework-4.8 标题:X509Certificate ...
分类:其他好文   时间:2019-12-06 19:39:42    阅读次数:133
C#编程之AES加密(一)
这里我们主要参考一下官方的例程: 1 using System; 2 using System.IO; 3 using System.Security.Cryptography; 4 5 namespace Aes_Example 6 { 7 class AesExample 8 { 9 publi ...
分类:Windows程序   时间:2019-11-29 15:49:22    阅读次数:88
shiro与spring的集成基础的Hello案例
1.1 shiro的四大基石 。身份验证(登录)Authentication:身份认证 / 登录,验证用户是不是拥有相应的身份; 。授权(权限)Authorization:验证某个已登录的用户是否拥有某个权限 。密码学(密码加密) Cryptography:加密,保护数据的安全性,如密码加密存储到数 ...
分类:编程语言   时间:2019-11-24 11:29:21    阅读次数:68
微信小程序加密解密 C# 以及 填充无效,无法被移除错误的解决方案 Padding is invalid and cannot be removed
解密加密源码 1 using System; 2 using System.Security.Cryptography; 3 using System.Text; 4 5 namespace Wechat 6 { 7 public static class Security 8 { 9 public ...
分类:微信   时间:2019-11-10 09:56:45    阅读次数:452
Python模块 - Paramiko
ssh是一个协议,OpenSSH是其中一个开源实现,paramiko是Python的一个库,实现了SSHv2协议(底层使用cryptography)。 有了Paramiko以后,我们就可以在Python代码中直接使用SSH协议对远程服务器执行操作,而不是通过ssh命令对远程服务器进行操作。 para ...
分类:编程语言   时间:2019-11-09 23:18:37    阅读次数:79
POJ - 2109 - Power of Cryptography = 高精度整数
http://poj.org/problem?id=2109 给一个大概100位的高精度整数p,找他的n次方根,貌似题目有问题,不一定会有开根开得尽的情况,这个时候要找的就是最大的根。 那这样有什么意思呢? 这种题按道理要用Java去写的,可以先从p和n的关系找到根的位数,然后在这个范围里面二分会更 ...
分类:其他好文   时间:2019-10-23 00:04:09    阅读次数:94
加密解密
// // 使用DES(数据加密算法)对数据进行加密/解密的类 // using System; using System.IO; using System.Security.Cryptography; using System.Text; namespace Encrypt { /// <summ... ...
分类:其他好文   时间:2019-10-22 18:45:33    阅读次数:116
加解密合集
using System; using System.IO; using System.Text; using System.Windows.Forms; using System.Security.Cryptography; using System.Web; using System.Text.... ...
分类:其他好文   时间:2019-10-22 16:45:28    阅读次数:82
EncryptHelper加密对象-工具类
using System; using System.IO; using System.Security.Cryptography; using System.Text; using System.Web.Security; namespace Common.Utility { /// /// Au... ...
分类:其他好文   时间:2019-10-22 13:18:24    阅读次数:90
396条   上一页 1 2 3 4 5 6 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!