博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
postman请求https接口
阅读量:6004 次
发布时间:2019-06-20

本文共 830 字,大约阅读时间需要 2 分钟。

1:点击扳手图标,再点击Settings

2:关闭SSL校验

 3:切到Certificates页签;添加客户端校验

注:

CRT file为客户端密钥库的公钥

KEY file为客户端密钥库的私钥
Passphrase为密钥库的密码


4:生成PKCS12数字证书

打开cmd1、生成私有秘钥:(先创建目录d:/temp/store/)    输入keytool -genkey -v -alias root -keyalg RSA -storetype PKCS12 -keystore d:/temp/store/test.jks     输入密钥库口令:123456;其它全部填空2、根据私有密钥生成公钥    输入keytool -export -alias root -keystore d:/temp/store/test.jks -storetype PKCS12 -storepass 123456 -rfc -file d:/temp/store/test.cer

5:将.jks格式的证书转换为p12证书

keytool -importkeystore -srckeystore d:/temp/store/test.jks -srcstoretype JKS -deststoretype PKCS12 -destkeystore d:/temp/store/test.p12

6:用openssl对一个p12格式密钥库进行公钥和私钥的导出(生成pem格式证书,需要有p12证书):

先决条件:
  从openssl官网下载www.openssl.org
  安装openssl[windows和linux安装不同]
如果没有配置环境变量,则需要进入openssl的bin目录下执行命令,如:C:/OpenSSL/bin

 

转载于:https://www.cnblogs.com/Alan0218/articles/10252847.html

你可能感兴趣的文章
Linux部署web程序
查看>>
Background
查看>>
flex框架pureMVC的使用
查看>>
Oracle怎么更改用户名
查看>>
Hdu4311 || 4312Meeting point-1/-2 n个点中任意选一个点使得其余点到该点曼哈顿距离之和最小...
查看>>
ribbion的负载均衡之端口的切换
查看>>
Kettle 环境变量设置
查看>>
vue项目导出EXCEL功能
查看>>
给老婆的一篇文章
查看>>
实际案例:在现有代码中通过async/await实现并行
查看>>
jQuery+ASP.NET MVC基于CORS实现带cookie的跨域ajax请求
查看>>
【并查集】String Reconstruction
查看>>
闲话__stdcall, __cdecl, __fastcall出现的历史背景以及各自解决的问题
查看>>
NOI后训练记录
查看>>
二分法和牛顿迭代法
查看>>
OutLook The profile name you entered already exists.Enter a different profile name.
查看>>
Shell命令-文件压缩解压缩之gzip、zip
查看>>
The Unique MST
查看>>
个人总结
查看>>
uva 673 Parentheses Balance
查看>>