Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

Table of Contents

Note

HTTPS 설정, 데이타 암복호등 OpenSSL 을 활용할 일이 많으므로 사례별로 자주 사용하는 명령어를 정리했습니다.

암호에 대한 대략적인 소개는 slideshare 에 공개한 "암호화 이것만 알면 된다" 를 참고하세요

...

Code Block
openssl pkcs12 -in file.p12 -nocerts -out file.key


PKCS#12 내 개인키에 pass phrase 를 적용하지 않고 파일로 저장

Code Block
openssl pkcs12 -in file.p12 -out file.pem -nodes

...