官网:https://shiro.apache.org/ Shiro主要组件包括:Subject,SecurityManager,Authenticator,Authorizer,SessionManager,CacheManager,Cryptography,Realms。 1. SubjectS ...
分类:
其他好文 时间:
2018-09-11 17:59:17
阅读次数:
175
今天在服务器上搭建django开发环境的时候遇到了一问题,就是在python3下安装pymysql 出现以下问题 1.Failed cleaning build dir for cryptography 2.Command "/usr/bin/python3 -u -c "import setupt ...
分类:
数据库 时间:
2018-09-09 22:12:49
阅读次数:
308
C#中有两种类型的随机数生成器: 伪随机数(System.Random) 安全随机数(System.Security.Cryptography.RNGCryptoServiceProvider) 关键的区别在于用于进行随机化的种子值可能不会快速且随机地变化。例如,System.Random依赖于计算 ...
[root@kazihuo ~]# ansible all -m ping ERROR! Unexpected Exception, this is probably a bug: (cryptography 0.8.2 (/usr/lib64/python2.7/site-packages), R ...
分类:
其他好文 时间:
2018-08-16 16:36:45
阅读次数:
1099
public static string MD5String(string value) { System.Security.Cryptography.MD5 md5 = new System.Security.Cryptography.MD5CryptoServiceProvider(); byt ...
分类:
其他好文 时间:
2018-08-06 21:41:22
阅读次数:
183
背景介绍 最近在看《密码学与网络安全》相关的书籍,这篇文章主要详细介绍一下著名的网络安全协议SSL。 在开始SSl介绍之前,先给大家介绍几个密码学的概念和相关的知识。 1、密码学的相关概念 密码学(cryptography):目的是通过将信息编码使其不可读,从而达到安全性。 明文(plain tex ...
分类:
其他好文 时间:
2018-07-29 12:56:48
阅读次数:
135
写写式子就出来了方程。。 然后解方程。。不过数很大。。用Java就好啦。。 就不贴呃的代码了。。。贴别人的。。https://blog.csdn.net/qq_15714857/article/details/49790693?locationNum=5&fps=1 ...
分类:
其他好文 时间:
2018-07-18 14:26:54
阅读次数:
191
1. 目的 Java服务在灰度环境和生产环境需要参照此文档进行部署. 2. 环境准备 2.1. 安装Java Cryptography Extension (JCE) 需要在JVM中安装JCE来进行加解密. 2.2. 准备td-config目录 2.2.1 准备密钥文件tdkeys.jks 将生产环 ...
分类:
编程语言 时间:
2018-07-17 16:37:56
阅读次数:
182
场景:内网服务器不能上外网(代理也不通!), 之前安装了PYTHON的几个安装包,但不是知道为什么无法使用PARAMIKO这个模块 在导入 from cryptography.hazmat.bindings._openssl import ffi, lib 的时候会 报错: from cryptog ...
分类:
编程语言 时间:
2018-07-13 18:58:42
阅读次数:
5377
system.Random类生成的随机数是伪随机,因此使用system.Security.Cryptography.RNGCryptoServiceProvider的类 ...
分类:
Web程序 时间:
2018-07-04 15:12:20
阅读次数:
177