mirror of
https://github.com/gnh1201/welsonjs.git
synced 2026-04-18 18:18:42 +00:00
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.
19 lines
451 B
C#
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();
|
|
}
|
|
}
|
|
}
|