welsonjs/WelsonJS.Augmented/Catswords.TlsReport/Program.cs
Namhyeon, Go 78e5de796e Add Catswords.TlsReport TLS 1.2 offline inspector tool
Introduces the Catswords.TlsReport project, a .NET Framework 4.7.2 console application for offline inspection of Windows TLS 1.2 readiness. Includes project files, configuration, and a comprehensive Tls12OfflineInspector utility that checks OS, registry, and crypto policy for TLS 1.2 support. Updates the solution file to include the new project.
2025-12-23 00:58:38 +09:00

19 lines
451 B
C#

using System;
namespace Catswords.TlsReport
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Catswords TLS 1.2 Offline Inspector");
Console.WriteLine("https://catswords.com");
Console.WriteLine();
var report = Tls12OfflineInspector.Evaluate();
Console.WriteLine(report.ToText());
Console.WriteLine();
}
}
}