RSA是一种使用非对称加密的算法,公钥加密,私钥解密,私钥加签,公钥验签,加密是为了防止信息被泄露,而签名是为了防止信息被篡改。 package com.qt.rsautil; import java.security.KeyFactory; import java.security.KeyPair ...
分类:
其他好文 时间:
2020-07-11 19:37:43
阅读次数:
65
https://www.xiaohongshu.com/discovery/item/5f06aecf000000000101cff5 import java.security.MessageDigest; import org.slf4j.Logger; import org.slf4j.Logg ...
分类:
其他好文 时间:
2020-07-11 17:13:01
阅读次数:
78
在Windows操作系统中,如果我们想要开发C程序或者C++程序,我们通常都会在集成开发环境(IDE, integrated development envirnoments)上面进行工作,由于这些IDE大多都使用图形用户界面(GUI,graphic user interface),因此在IDE上由 ...
分类:
编程语言 时间:
2020-07-11 00:17:15
阅读次数:
76
直接上代码吧,Eureka Server端的主要依赖的版本: <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-server</artif ...
分类:
编程语言 时间:
2020-07-11 00:14:43
阅读次数:
86
啥也不说,百度一下,代码先搞起来 一、项目搭建 这里我使用的是 gradle 来构建项目的,spring boot 项目的搭建话这里就不做说明,如果还不会的自行学习。 compile 'org.springframework.boot:spring-boot-starter-security' 二、 ...
分类:
编程语言 时间:
2020-07-10 21:09:12
阅读次数:
53
1 public List<Dai> Show(string name="") 2 { 3 using (SqlConnection conn=new SqlConnection("Data Source=.;Initial Catalog=Dai6_21;Integrated Security=T ...
一、背景介绍 JDK8的加密策略存在限制版本和无限制版本,随着越来越多的第三方工具只支持 JDK8,业务环境中,发现有些方法会报异常: 1、使用AES加解密 java.security.InvalidKeyException: Illegal key size 2、安全性机制导致的访问https会报 ...
分类:
其他好文 时间:
2020-07-09 22:33:57
阅读次数:
91
HTTP/1.1 502 Fiddler - Connection Failed Date: Thu, 09 Jul 2020 10:31:22 GMT Content-Type: text/html; charset=UTF-8 Connection: close Cache-Control: n ...
分类:
Web程序 时间:
2020-07-09 19:38:47
阅读次数:
116
Hello and Welcome to the first part of an exciting series of blog posts where you will learn how to build an end-to-end full stack polling app similar ...
分类:
移动开发 时间:
2020-07-08 19:54:59
阅读次数:
69
摘自:https://www.phpyuan.com/235739.html 一、前言 安全增强型 Linux(Security-Enhanced Linux)简称 SELinux,它是一个 Linux 内核模块,也是 Linux 的一个安全子系统。 SELinux 主要由美国国家安全局开发。2.6 ...
分类:
系统相关 时间:
2020-07-08 13:06:40
阅读次数:
104