using System.Runtime.CompilerServices; namespace StellaOps.Testing; /// /// Automatically ensures OpenSSL 1.1 shim is visible for tests that require legacy OpenSSL. /// internal static class OpenSslAutoInit { [ModuleInitializer] public static void Init() { OpenSslLegacyShim.EnsureOpenSsl11(); } }