码迷,mamicode.com
首页 >  
搜索关键字:cryptography    ( 396个结果
Shiro安全框架【快速入门】就这一篇!
Shiro 简介 照例又去官网扒了扒介绍: Apache Shiro? is a powerful and easy to use Java security framework that performs authentication, authorization, cryptography, a ...
分类:其他好文   时间:2019-01-06 18:21:07    阅读次数:191
[C#] 简单的 Helper 封装 -- SecurityHelper 安全助手:封装加密算法(MD5、SHA、HMAC、DES、RSA)
#region using System; using System.IO; using System.Security.Cryptography; using System.Text; #endregion namespace Wen.Helpers.Common { /// /// 安全助手 /... ...
分类:编程语言   时间:2018-12-26 21:23:44    阅读次数:242
python3之scrapy安装使用
需要安装的包 pip install scrapy selenium 可能需要卸载重装的模块 lxml cryptography cffi pip uninstall xxx pip install xxx 下载安装chromedriver,它的版本要和chrome版本对应起来。 ChromeDri ...
分类:编程语言   时间:2018-12-11 19:52:36    阅读次数:185
椭圆曲线密码学ECC
椭圆曲线密码学(Elliptic curve cryptography),简称ECC,是一种建立公开密钥加密的算法,也就是非对称加密。类似的还有RSA,ElGamal算法等。ECC被公认为在给定密钥长度下最安全的加密算法。比特币中的公私钥生成以及签名算法ECDSA都是基于ECC的。下面简单介绍ECC ...
分类:其他好文   时间:2018-11-18 12:34:23    阅读次数:953
python-加解密
cryptography库既包括高级规则,也包括普通密码算法(如对称密码、消息摘要和关键派生函数)的低级接口。$pipinstallcryptography例如,用密码学的高层对称加密方式加密:fromcryptography.fernetimportFernetkey=Fernet.generate_key()f=Fernet(key)token=f.encrypt(b"hello,world!
分类:编程语言   时间:2018-11-12 19:50:06    阅读次数:333
GetHtml
using System;using System.IO;using System.IO.Compression;using System.Net;using System.Net.Security;using System.Security.Cryptography.X509Certificate ...
分类:Web程序   时间:2018-11-10 10:53:05    阅读次数:158
Java加解密服务API解读
引言 本文是对Java Crypto API的解读 。Java Cryptography API允许你对数据进行加解密操作,同时进行秘钥管理,签名等操作。 Java加解密服务涉及的包有: 1. java.security 2. java.security.cert 3. java.security. ...
分类:编程语言   时间:2018-10-24 15:48:59    阅读次数:172
md5盐值加密
using System;using System.Collections.Generic;using System.Linq;using System.Security.Cryptography;using System.Text;using System.Web; namespace sci_p ...
分类:其他好文   时间:2018-10-23 10:58:22    阅读次数:762
c# 解决Randoms伪随机重复问题
/// /// 解决伪随机问题 /// public static void Random() { int t = 0; for (int i = 0; i < 10; i++) { byte[] bytes = new byte[4]; System.Security.Cryptography.R... ...
分类:Windows程序   时间:2018-10-13 13:41:14    阅读次数:188
Caused by: java.security.InvalidKeyException: Illegal key size or default parameters
How to remove the key size restriction in Java JDK? Are you developing your beautiful application using the Java Cryptography Extension, and using a k ...
分类:编程语言   时间:2018-09-19 16:22:24    阅读次数:162
396条   上一页 1 ... 5 6 7 8 9 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!