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
#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
需要安装的包 pip install scrapy selenium 可能需要卸载重装的模块 lxml cryptography cffi pip uninstall xxx pip install xxx 下载安装chromedriver,它的版本要和chrome版本对应起来。 ChromeDri ...
分类:
编程语言 时间:
2018-12-11 19:52:36
阅读次数:
185
椭圆曲线密码学(Elliptic curve cryptography),简称ECC,是一种建立公开密钥加密的算法,也就是非对称加密。类似的还有RSA,ElGamal算法等。ECC被公认为在给定密钥长度下最安全的加密算法。比特币中的公私钥生成以及签名算法ECDSA都是基于ECC的。下面简单介绍ECC ...
分类:
其他好文 时间:
2018-11-18 12:34:23
阅读次数:
953
cryptography库既包括高级规则,也包括普通密码算法(如对称密码、消息摘要和关键派生函数)的低级接口。$pipinstallcryptography例如,用密码学的高层对称加密方式加密:fromcryptography.fernetimportFernetkey=Fernet.generate_key()f=Fernet(key)token=f.encrypt(b"hello,world!
分类:
编程语言 时间:
2018-11-12 19:50:06
阅读次数:
333
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 Crypto API的解读 。Java Cryptography API允许你对数据进行加解密操作,同时进行秘钥管理,签名等操作。 Java加解密服务涉及的包有: 1. java.security 2. java.security.cert 3. java.security. ...
分类:
编程语言 时间:
2018-10-24 15:48:59
阅读次数:
172
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
/// /// 解决伪随机问题 /// public static void Random() { int t = 0; for (int i = 0; i < 10; i++) { byte[] bytes = new byte[4]; System.Security.Cryptography.R... ...
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