.CRT 파일 확장자
Security Certificate
| 개발사 | 해당 없음 |
| 인기도 |
4.0 | 57 투표 |
CRT 파일이란 무엇인가요?
A CRT file is an encoded digital certificate used by a secure website. It identifies the website and verifies its authenticity. CRT files may be saved in a variety of certificate formats, including the Distinguished Encoding Rules (.DER) and Privacy Enhanced Mail (.PEM) formats.
추가 정보
To host secure websites, web server administrators typically apply for digital certificates from third-party Certificate Authorities, such as GoDaddy, Verisign, or Thawte. These certificates are saved in various formats, including the CRT format.
After receiving a certificate, administrators must place it on their web server, within the website they want to secure. When a user accesses the site, the web server passes the certificate to the user's web browser, to verify the site's identity. (If a browser cannot verify a certificate, it may instead show a page that says "This website's certificate is expired.")
참고: To view the contents of a secure website's digital certificate, click the lock icon that appears in your website's address bar.
CRT 파일을 여는 방법
You can use OpenSSL (multiplatform) to view the contents of a CRT file. For example, if your CRT file contains a certificate saved in the DER format, you can use the following command to view your file's contents:
openssl x509 -inform der -in YourFileName.crt -text -noout