From a4709caf1c60ba00be18ea41e111a2ed79ac7f23 Mon Sep 17 00:00:00 2001 From: ema Date: Mon, 12 Jan 2026 22:00:25 +0800 Subject: [PATCH] Update comment for .pfx file extension Expanded the comment for the .pfx extension to note its common usage on Windows, IIS, and .NET platforms. --- QuickLook.Plugin/QuickLook.Plugin.CertViewer/Plugin.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QuickLook.Plugin/QuickLook.Plugin.CertViewer/Plugin.cs b/QuickLook.Plugin/QuickLook.Plugin.CertViewer/Plugin.cs index 1baef5d..2602f60 100644 --- a/QuickLook.Plugin/QuickLook.Plugin.CertViewer/Plugin.cs +++ b/QuickLook.Plugin/QuickLook.Plugin.CertViewer/Plugin.cs @@ -12,7 +12,7 @@ public sealed class Plugin : IViewer { ".p7s", ".pkcs7", // PKCS #7 detached signature (signature only, no original content) ".p12", // PKCS #12 certificate store (usually contains certificate and private key) - ".pfx", // PKCS #12 certificate store (similar to .p12, common on Windows) + ".pfx", // PKCS #12 certificate store (similar to .p12, common on Windows / IIS / .NET) ".cer", // Certificate file (DER or PEM encoded, usually contains only the public certificate) ".crt", // Certificate file (similar to .cer, common on UNIX/Linux) ".pem", // PEM encoded certificate or key file (can contain certificate, private key, or CA chain)