1. 개인키 생성

$ openssl genrsa -des3 -out test.key 2048



패스워드를 2번 넣으면 개인키가 생성 된다.


$ openssl rsa -noout -text -in test.key을 통해 생성된 키를 확인할 수 있다.


2. CSR 생성

$ openssl req -new -key test.key -out test.csr



Country Name에서 Email Address 까지 개인정보를 넣고

A challenge password, An optional company name 은 defalut로 Enter를 눌러서 넘긴다.


생성된 CSR 확인

$ openssl req -noout -text -in test.csr // CSR의 내용을 확인 할 수 있다.

$ cat test.csr // base64형식으로 인코딩 된 값을 확인 할 수있다.


+ Recent posts