Skip to content

Commit b3f9fb6

Browse files
authored
Re-enable SHAKE Read tests on Azure Linux.
This reverts commit 3aaffd0.
1 parent cecbc68 commit b3f9fb6

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/libraries/System.Security.Cryptography/tests/ShakeTestDriver.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)