반응형
How to change crt certificate format to pem format in linux ubuntu
(리눅스 우분투에서 crt인증서 포맷을 pem 포맷으로 바꾸는 방법)
인증서 인증을 위해 crt파일을 pem형식의 인증서로 변환해야할 때가 있다.
이럴 땐 아래 명령어를 사용하면 간단히 포맷을 변환할 수 있다.
(There are times when you need to convert a crt file into a pem-format certificate for certificate authentication.
In this case, you can easily convert the format by using the command below.)
$ sudo openssl x509 -in in.crt -out out.pem -outform PEM
반응형