最近学校举办了一次CTF新生赛BJDCTF,很适合初学者入门,在此分享分享 ...
分类:
其他好文 时间:
2020-01-22 10:51:51
阅读次数:
1221
import java.util.Base64; import javax.crypto.Cipher; import javax.crypto.SecretKey; import javax.crypto.SecretKeyFactory; import javax.crypto.spec.DES ...
分类:
其他好文 时间:
2020-01-19 19:33:16
阅读次数:
85
图像的运算可以是十进制的值运算也可以是二进制的位逻辑运算 一、图像加法运算 1 import cv2 2 import numpy as np 3 img1 = np.random.randint(0,256, size = [3,3] , dtype = np.uint8) 4 img2 = np ...
分类:
其他好文 时间:
2020-01-12 13:06:36
阅读次数:
77
2019-04-11 分类:Oracle 阅读(2626) 评论(0) 文章目录[隐藏] 一、DataGuard 工作原理 二、搭建环境 三、主库配置 四、备库配置 五、主备切换 一、DataGuard 工作原理 Data Gurad 通过冗余数据来提供数据保护,Data Gurad 通过日志同步机 ...
分类:
数据库 时间:
2020-01-12 09:54:58
阅读次数:
253
Let‘s Encrypt 获取Https证书 假设安装目录:/root/letsencrypt1.cd root目录安装git yum -y install git2.输入 git clone https://github.com/letsencrypt/letsencrypt3.cd letse ...
分类:
其他好文 时间:
2020-01-09 19:08:25
阅读次数:
109
C#数据加密解密的非对称算法使用 RSACryptoServiceProvider Asymmetric algorithms--Encrypt Encrypt C#数据Encrypt加密Encrypt解密的相关算法可以参考System.Security.Cryptography,这个类库中包含MD ...
分类:
编程语言 时间:
2020-01-09 15:56:48
阅读次数:
115
项目上线后,为了安全,会对请求加密,防止看到请求参数。现在直接看代码吧。这里以vue为例。 在main.js中的请求拦截器中 然后主要看加密算法 因为私钥解密是java 获取到加密的数据后去解密的,这里就暂时先不写了!!! ...
分类:
移动开发 时间:
2020-01-09 10:27:14
阅读次数:
140
配置 control 文件: load data characterset utf8 append into table role_res_gold fields terminated by ';' TRAILING NULLCOLS ( F_USERNAME , F_RES_TYPE , F_IN ...
分类:
数据库 时间:
2020-01-05 20:37:33
阅读次数:
225
PHP 加密解密函数: /** * 系统加密方法 * @param string $data 要加密的字符串 * @param string $key 加密密钥 * @param int $expire 过期时间 单位 秒 * @return string * @author winky */ fu ...
分类:
Web程序 时间:
2019-12-31 10:27:27
阅读次数:
122
Further Reading Further Reading Where you go from here is up to you, the world is your router1 Ghost's dynamic routing system is an extremely powerful ...
分类:
其他好文 时间:
2019-12-23 00:15:50
阅读次数:
115