最新 最热

C# AES CBC PKCS7

The package openssl is compatible with built-in CMake targets:

2021-12-16
0

UnrealIRCd 基础4

报错报错内容checking for openssl... not foundApparently you do not have both the openssl binary and openssl development libraries installed.Please install the ne...

2021-11-29
0

lua调用c语言so动态库--以waf中证书检查为例

在基于nginx做waf开发时,nginx+lua+c动态库是常见的开发模式,在lua生态无法满足需求时,就需要我们在lua代码中调用动态库的方式,进行扩展,下面以lua调用c语言+openssl动态库的方式,进行判断证书的创建时间和证书的过期时间...

2021-09-06
0

PHP AES加密和解密

php7以上。使用函数openssl加密: * @param string $string 需要加密的字符串 * @param string $key 密钥 // openssl_encrypt 加密不同Mcrypt,对秘钥长度要求,超出16加密结果不变 $data = op......

2021-04-06
1

安装keepalived OpenSSL is not properly installed on your system. !!!

错误信息:configure: error: !!! OpenSSL is not properly installed on your system. !!! !!! Can not in

2020-06-19
0

用shell命令产生随机数的六种方法

1 openssl rand -base64 10 | md5sum 产生以10位随机字符

2020-03-24
0

解决在Python中如何获取证书信息

使用OpenSSlfrom OpenSSL import crypto# path表示证书路径,file_name表示证书文件名cert_file = '/path/file_name/'cert_file = '/path/to/your/certificate'cert = crypto.load_ce......

2020-01-06
0

Libssl Segfaults on python3.6 With Threading

openssl1.0.0 和 openssl1.0.1 使用Python3.6的绑定:

2019-12-30
0

openssl版本升级操作记录

[root@nginx ~]# wget https://www.openssl.org/source/openssl-1.1.0g.tar.gz[root@nginx ~]# tar -zvxf openssl-1.1.0g.tar.gz[root@nginx ~]# cd openssl-1.1.0g[...

2019-12-06
0

安全篇之永强继续教你加解密:对称篇(三)

篇文中我们已经好像大概似乎看起来貌似搞定了ECB、CBC、CFB、OFB、CTR这五个英文单词缩写代表啥意义了,也弄清楚了aes-128-ecb中的128是啥意思了,好像还接触了一下填充的概念,最后就差那个iv向量到现在还没搞明白是个什...

2019-11-13
0