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형식으로 인코딩 된 값을 확인 할 수있다.
'IT' 카테고리의 다른 글
svn E155004 is already locked (0) | 2018.11.13 |
---|---|
Centos 버전별 iso 다운로드 (0) | 2018.10.16 |
SCEP 프로토콜 (Simple Certificate Enrollment Protocol) - 2 (0) | 2018.10.02 |
SCEP 프로토콜 (Simple Certificate Enrollment Protocol) - 1 (0) | 2018.10.02 |
Github 사용법 (0) | 2018.10.01 |