惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
Recent Commits to openclaw:main
Recent Commits to openclaw:main
D
Docker
博客园 - 司徒正美
MyScale Blog
MyScale Blog
S
SegmentFault 最新的问题
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Blog — PlanetScale
Blog — PlanetScale
N
Netflix TechBlog - Medium
Google DeepMind News
Google DeepMind News
博客园 - 聂微东
The Register - Security
The Register - Security
P
Proofpoint News Feed
U
Unit 42
J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
Martin Fowler
Martin Fowler
H
Help Net Security
博客园 - Franky
博客园 - 【当耐特】
F
Fortinet All Blogs
Engineering at Meta
Engineering at Meta
L
LangChain Blog
Vercel News
Vercel News
美团技术团队
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
B
Blog RSS Feed
The Last Watchdog
The Last Watchdog
Help Net Security
Help Net Security
Webroot Blog
Webroot Blog
PCI Perspectives
PCI Perspectives
S
Security Affairs
S
Secure Thoughts
Apple Machine Learning Research
Apple Machine Learning Research
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Microsoft Azure Blog
Microsoft Azure Blog
T
Troy Hunt's Blog
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
F
Full Disclosure
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
大猫的无限游戏
大猫的无限游戏
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Hacker News: Ask HN
Hacker News: Ask HN
G
Google Developers Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
D
DataBreaches.Net

博客园 - Fintech技术汇

conda环境导出/导入 Element UI - el-tree组件显示横向滚动条 linux-断开SSH终端连接后,保持程序依然运行 linux命令 GO单元测试-工具 开源协议 Moodle环境搭建 githubusercontent和github加速镜像 Ubuntu下解决Git保存用户名和密码的方法 MySql操作 NPM设置和恢复淘宝镜像 Spring Boot实现热部署 Docker命令 MySql忘记密码后重置 IntelliJ IDEA 推荐设置讲解 Spring Boot VS Spring Cloud 分布式RPC框架ZeroC Ice简介 Visual Studio中,你应该知道的几个Immediate Window小技巧 如何调试没有源码的.Net程序 从msi解压文件
JKS证书转换
Fintech技术汇 · 2024-02-19 · via 博客园 - Fintech技术汇
  • jks 转换成p12格式
keytool -importkeystore -srckeystore d:\cert\server.jks -destkeystore d:\cert\server.p12 -srcstoretype jks -deststoretype pkcs12

执行上述命令后,会提示输入三次密码,前两次是新的p12 store文件的密码,第三次是源jks store文件的密码。命令执行完毕后,就会生成p12文件server.p12

  • 从p12生成crt和非加密的key
openssl pkcs12 -in C:\cert\server.p12 -nokeys -clcerts -out C:\cert\server.crt
openssl pkcs12 -in C:\cert\server.p12 -nocerts -nodes -out C:\cert\server.key