Menu

Wednesday, January 15, 2020

[Security] วิธีการดูข้อมูลใน ไฟล์ PFX บน Windows
[Security] How to View Content of PFX File on Windows

ไฟล์ PFX เป็นไฟล์ที่ใช้เก็บ certificates ทั้งหมดรวมถึง private key ที่เกี่ยวข้องด้วย ซึ่งไฟล์นี้จะมีการป้องกันด้วยรหัสผ่าน ในกรณีนี้เราใช้ไฟล์นี้ในการทำ Digital Signature

สำหรับวิธีดูข้อมูลในไฟล์ PFX สามารถรันคำสั่งใดคำสั่งหนึ่งข้างล่างนี้

  1. รันคำสั่งนี้ใน command prompt
  2. certutil -dump <path_to_cert>
    

  3. รันคำสั่งนี้ใน Windows PowerShell
  4. Get-PfxCertificate -FilePath <path_to_cert>
    

No comments:

Post a Comment