Re-enable PKCSdotnet/corefx#1 decryption tests
authorJeremy Barton <jbarton@microsoft.com>
Tue, 12 Nov 2019 18:39:41 +0000 (10:39 -0800)
committerGitHub <noreply@github.com>
Tue, 12 Nov 2019 18:39:41 +0000 (10:39 -0800)
Commit migrated from https://github.com/dotnet/corefx/commit/08f186eefe3272a5668775e4c47f19f3e390557f

src/libraries/Common/tests/System/Security/Cryptography/AlgorithmImplementations/RSA/EncryptDecrypt.cs
src/libraries/Common/tests/System/Security/Cryptography/AlgorithmImplementations/RSA/RSAKeyExchangeFormatter.cs
src/libraries/System.Security.Cryptography.Xml/tests/Samples/EncryptingDecryptingAsymmetric.cs

index 5f38677..a0076ae 100644 (file)
@@ -483,7 +483,6 @@ namespace System.Security.Cryptography.Rsa.Tests
             }
         }
 
-        [ActiveIssue(40434, TestPlatforms.Windows)]
         [Fact]
         public void RsaDecryptPkcs1LeadingZero()
         {
index 1f630db..bc73bde 100644 (file)
@@ -23,7 +23,6 @@ namespace System.Security.Cryptography.Rsa.Tests
             }
         }
 
-        [ActiveIssue(40434, TestPlatforms.Windows)]
         [Fact]
         public static void VerifyDecryptKeyExchangePkcs1()
         {
@@ -54,7 +53,6 @@ namespace System.Security.Cryptography.Rsa.Tests
             }
         }
 
-        [ActiveIssue(40434, TestPlatforms.Windows)]
         [Fact]
         public static void TestKnownValuePkcs1()
         {
index 3765226..5cf9f3a 100644 (file)
@@ -82,7 +82,6 @@ namespace System.Security.Cryptography.Xml.Tests
         public void AsymmetricEncryptionRoundtripUseOAEP() =>
             AsymmetricEncryptionRoundtrip(useOAEP: true); // OAEP is recommended
 
-        [ActiveIssue(40759, TestPlatforms.Windows)]
         [Fact]
         public void AsymmetricEncryptionRoundtrip() =>
             AsymmetricEncryptionRoundtrip(useOAEP: false);