Menu

Monday, October 14, 2019

[Security] การสร้าง Public Key และ Private Key ด้วย OpenSSL
[Security] How to Generate Public and Private Keys with OpenSSL

สำหรับการสร้าง RSA key หรือ Private Key สามารถใช้คำสั่งดังนี้
openssl genrsa -out key.pem 1024
openssl rsa -in key.pem -text -noout
Private Key ที่ได้จะอยู่ในไฟล์ชื่อ key.pem

สำหรับการสร้าง Public Key สามารถใช้คำสั่งดังนี้
openssl rsa -in key.pem -pubout -out pub.pem
openssl rsa -in pub.pem -pubin -text -noout
Public Key ที่ได้จะอยู่ในไฟล์ชื่อ pub.pem

No comments:

Post a Comment