第三方依赖openssl,但openssl却有版本不同符号不兼容的问题,由于条件限制不得不使用固定版本的openssl,又或者同时有两个第三方依赖不同版本的openssl,只能靠手动,为了备忘。 ...
分类:
其他好文 时间:
2020-05-31 19:32:33
阅读次数:
204
4.4、Service 可能会用到ipvs,先安装: yum install -y openssl openssl-devel popt popt-devel libnl-devel kenel-devel yum install -y ipvsadm ###4.4.1、概念 说明 kubernet ...
分类:
其他好文 时间:
2020-05-31 13:02:32
阅读次数:
67
源码包安装了openssl,但是执行 ./configure后,make的时候不通过,报:/usr/local/ssl/.openssl/include/openssl/ssl.h] Error 127
分类:
其他好文 时间:
2020-05-30 21:54:44
阅读次数:
171
安装依赖 yum install git -y yum install -y gcc make patch gdbm-devel openssl-devel sqlite-devel readline-devel zlib-devel bzip2-devel # 添加用户 useradd pytho ...
分类:
其他好文 时间:
2020-05-30 21:45:42
阅读次数:
67
Nginx+Lua生成最新文件下载链接背景介绍:要求Nginx提供一个固定的下载接口,比如:xxx.xxx.com/download,然后这个地址会跳转的最新版本的软件包下载地址,这样的话请求xxx.xxx.com/download就能下载到最新版本的软件包。Nginx编译安装添加lua模块[root@172-16-1-209tools]#wgethttp://luajit.org/downloa
分类:
其他好文 时间:
2020-05-30 20:14:55
阅读次数:
156
Apache+SVN部署 #1.安装依赖包 yum -y install expat-devel pcre pcre-devel openssl-devel cd /server/tools/ #安装apr-1.7.0 wget https://mirrors.aliyun.com/apache/a ...
分类:
Web程序 时间:
2020-05-30 20:12:51
阅读次数:
72
一、 对称加密 采用单钥密码系统的加密方法,同一个密钥可以同时用作信息的加密和解密,这种加密方法称为对称加密,也称为单密钥加密。 常见对称加密算法 DES : Data Encryption Standard,即数据加密标准,是一种使用密钥加密的块算法,1977年被美国联邦政府的国家标准局确定为联邦 ...
分类:
其他好文 时间:
2020-05-30 12:29:33
阅读次数:
86
首先 了解对称密码加密技术:采用单钥密码系统的加密方法,同一个密钥可以同时用作信息的加密和解密,这种加密方法称为对称加密,也称为单密钥加密。但是有时候密钥不用完全相同 只要相似也可以。因为用一个密钥可以推导出另一个。 传统密钥算法有:DES,IDEA,TDEA,RC5等 同时 DES还是分组加密。对 ...
分类:
编程语言 时间:
2020-05-30 09:11:42
阅读次数:
94
本次利用openssl建立私有CA,实现https加密通信. openssl由三部分组成: libencrypto库 libssl库 openssl多用途命令行工具 加密算法和协议: 对称加密算法和协议: 公钥体系:分为公钥和私钥 DES: Data Encryption Standard(IBM研 ...
分类:
其他好文 时间:
2020-05-29 19:29:00
阅读次数:
80
RSA私钥公钥加密解密与签名、SHA256 头文件:HashSignature.h #ifndef _HASH_SIGNATURE_H_ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <openssl/rsa. ...
分类:
其他好文 时间:
2020-05-29 17:33:58
阅读次数:
60