File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
src/libraries/System.Security.Cryptography/tests Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -52,10 +52,7 @@ public static bool IsReadSupported
5252 get
5353 {
5454 const long OpenSsl_3_3_0 = 0x30300000L ;
55- return IsSupported && (
56- PlatformDetection . IsWindows ||
57- // Disabled on AzureLinux https://github.com/dotnet/runtime/issues/112036
58- ( SafeEvpPKeyHandle . OpenSslVersion >= OpenSsl_3_3_0 && ! PlatformDetection . IsAzureLinux ) ) ;
55+ return IsSupported && ( PlatformDetection . IsWindows || SafeEvpPKeyHandle . OpenSslVersion >= OpenSsl_3_3_0 ) ;
5956 }
6057 }
6158
@@ -748,7 +745,6 @@ public void Read_MixedGetCurrentHash()
748745 }
749746
750747 [ ConditionalFact ( nameof ( IsSupported ) ) ]
751- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/112036" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsAzureLinux ) ) ]
752748 public void Read_NotSupported ( )
753749 {
754750 // This is testing when a TShake can be created, but the platform does not have Read.
You can’t perform that action at this time.
0 commit comments