当前位置:   article > 正文

openssl相关命令

openssl相关命令

报错keytool error: java.lang.Exception: Input not an X.509 certificate

该报错表示需要 X.509 格式的证书,可以通过下面的命令转换

openssl x509 -in <原证书>  -out <X.509证书>
# 例如
openssl x509 -in test.crt  -out test509.crt 
  • 1
  • 2
  • 3

参考: Error Importing SSL certificate : Not an X.509 Certificate

p7b转换成crt格式证书

openssl pkcs7 -print_certs -in <原p7b证书> -out <crt格式证书>
# 例如 
openssl pkcs7 -print_certs -in test.p7b -out test.crt
  • 1
  • 2
  • 3

crt格式转成pem格式证书

openssl x509 -in <原crt格式证书> -out <PEM格式证书> -outform PEM
例如:
openssl x509 -in test.crt -out test.pem -outform PEM
  • 1
  • 2
  • 3

验证指定证书是否生效

openssl s_client -connect <域名>  -CAfile <证书>
# 例如
openssl s_client -connect test.com:443  -CAfile ca-bundle.crt  
# 或者
openssl s_client -connect test.com:443  -CApath /etc/ssl/certs/ 
  • 1
  • 2
  • 3
  • 4
  • 5

参考: OpenSSL Verify return code: 20 (unable to get local issuer certificate)

保存LDAPS的自定义证书

echo -n | openssl s_client -connect testldaps.com:636 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > ldapserver.pem
  • 1

参考: How to save the LDAP SSL Certificate from OpenSSL

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/550493
推荐阅读
  

闽ICP备14008679号