- crt, key 파일의 pem 변환 방법 목차
반응형
.crt 파일을 .pem 파일로 변환하는 방법
openssl x509 -in server.crt -out svr_publickey.pem -outform PEM
이 변환을 사용하시면 파일 내부의 public key 부분만 svr_publickey.pem에 저장됩니다.
.key 파일을 .pem 파일로 변환하는 방법
openssl rsa -in server.key -text > svr_privatekey.pem
반응형
'python & 라즈베리파이' 카테고리의 다른 글
no-ip ddns 주소 자동갱신 설정(IP Updates Not Detected) (0) | 2023.09.15 |
---|---|
[python] 간단한 https Server 만들기 (0) | 2023.09.14 |
우분트 notepad++ 설치 방법 (0) | 2023.09.12 |
안드로이드 dumpstate 파일 저장 위치 (0) | 2023.09.08 |
[python]OSError: [Errno 22] Invalid argument (0) | 2023.09.07 |