diff --git a/src/libraries/System.Security.Cryptography/tests/CryptoConfigTests.cs b/src/libraries/System.Security.Cryptography/tests/CryptoConfigTests.cs index 205de5e17212c5..3dc54ba99c4d40 100644 --- a/src/libraries/System.Security.Cryptography/tests/CryptoConfigTests.cs +++ b/src/libraries/System.Security.Cryptography/tests/CryptoConfigTests.cs @@ -34,6 +34,7 @@ public static void NamedCreateMethods_NullInput() // The returned types on .NET Framework can differ when the machine is in FIPS mode. // So check hash algorithms via a more complicated manner. [Theory] + [ActiveIssue("https://github.com/dotnet/runtime/issues/37669", TestPlatforms.Browser)] [InlineData("MD5", typeof(MD5))] [InlineData("http://www.w3.org/2001/04/xmldsig-more#md5", typeof(MD5))] [InlineData("System.Security.Cryptography.HashAlgorithm", typeof(SHA1))] @@ -67,6 +68,7 @@ public static void NamedHashAlgorithmCreate(string identifier, Type baseType) } [Theory] + [ActiveIssue("https://github.com/dotnet/runtime/issues/37669", TestPlatforms.Browser)] [InlineData("System.Security.Cryptography.HMAC", typeof(HMACSHA1))] [InlineData("System.Security.Cryptography.KeyedHashAlgorithm", typeof(HMACSHA1))] [InlineData("System.Security.Cryptography.HMACSHA1", typeof(HMACSHA1))] @@ -99,6 +101,7 @@ public static void NamedKeyedHashAlgorithmCreate(string identifier, Type actualT } [Theory] + [ActiveIssue("https://github.com/dotnet/runtime/issues/37669", TestPlatforms.Browser)] [InlineData("AES", typeof(Aes))] #pragma warning disable SYSLIB0022 // Rijndael types are obsolete [InlineData("Rijndael", typeof(Rijndael))] @@ -124,6 +127,7 @@ public static void NamedSymmetricAlgorithmCreate(string identifier, Type baseTyp } [Theory] + [ActiveIssue("https://github.com/dotnet/runtime/issues/37669", TestPlatforms.Browser)] [InlineData("RSA", typeof(RSA))] [InlineData("System.Security.Cryptography.RSA", typeof(RSA))] [InlineData("ECDsa", typeof(ECDsa))] @@ -137,6 +141,7 @@ public static void NamedAsymmetricAlgorithmCreate(string identifier, Type baseTy } [Theory] + [ActiveIssue("https://github.com/dotnet/runtime/issues/37669", TestPlatforms.Browser)] [InlineData("DSA", typeof(DSA))] [InlineData("System.Security.Cryptography.DSA", typeof(DSA))] [SkipOnPlatform(PlatformSupport.MobileAppleCrypto, "DSA is not available")] @@ -159,6 +164,7 @@ public static void NamedAsymmetricAlgorithmCreate_DSA_NotSupported(string identi } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/37669", TestPlatforms.Browser)] public static void NamedCreate_Mismatch() { Assert.Throws(() => AsymmetricAlgorithm.Create("SHA1")); diff --git a/src/libraries/System.Security.Cryptography/tests/HashAlgorithmTest.cs b/src/libraries/System.Security.Cryptography/tests/HashAlgorithmTest.cs index d4cd6a305baeb1..3e4337d2a812cc 100644 --- a/src/libraries/System.Security.Cryptography/tests/HashAlgorithmTest.cs +++ b/src/libraries/System.Security.Cryptography/tests/HashAlgorithmTest.cs @@ -59,6 +59,7 @@ public async Task VerifyComputeHashAsync(int size) } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/37669", TestPlatforms.Browser)] public async Task ComputeHashAsync_SupportsCancellation() { using (CancellationTokenSource cancellationSource = new CancellationTokenSource(100))