일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 인증
- Android
- WebAuthn
- FIDO2
- MFA
- MSYS2
- fido
- SSH
- git
- 앱스토어
- kmip
- OSX
- SSL
- openssl
- 2FA
- apple
- 앱리소스
- MYSQL
- 애플
- albumbook
- 안드로이드
- otpkey
- 앨범북
- OTP
- Xcode
- SWIFT
- SwiftUI
- css
- Nodejs
- appres
- Today
- Total
인디노트
OpenSSL Convert PEM 본문
OpenSSL Convert PEM
Convert PEM to DER
openssl x509 -outform der -in certificate.pem -out certificate.der
Convert PEM to P7B
openssl crl2pkcs7 -nocrl -certfile certificate.cer -out certificate.p7b -certfile CACert.cer
Convert PEM to PFX
openssl pkcs12 -export -out certificate.pfx -inkey privateKey.key -in certificate.crt -certfile CACert.crt
OpenSSL Convert DER
Convert DER to PEM
openssl x509 -inform der -in certificate.cer -out certificate.pem
OpenSSL Convert P7B
Convert P7B to PEM
openssl pkcs7 -print_certs -in certificate.p7b -out certificate.cer
Convert P7B to PFX
openssl pkcs7 -print_certs -in certificate.p7b -out certificate.cer
openssl pkcs12 -export -in certificate.cer -inkey privateKey.key -out certificate.pfx -certfile CACert.cer
OpenSSL Convert PFX
Convert PFX to PEM
openssl pkcs12 -in certificate.pfx -out certificate.cer -nodes
'개발 플랫폼 및 언어' 카테고리의 다른 글
How to Delete Old Unused Kernels in CentOS, RHEL and Fedora (0) | 2018.05.03 |
---|---|
EPEL (0) | 2018.05.03 |
SSL 인증서 요청 CSR 만들기 (0) | 2018.04.28 |
postgres 초기 패스워드 설정 (0) | 2018.04.27 |
keystore 에서 key 추출하기 (0) | 2018.04.27 |