Skip to content

Commit 211b051

Browse files
authored
Fix parallel merge with new usage of renamed method
1 parent 0720de0 commit 211b051

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libraries/System.Security.Cryptography.Pkcs/tests/SignedCms/SignedCmsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1848,7 +1848,7 @@ public static void ComputeSignature_SlhDsa_DefaultDigest()
18481848
useSigner =>
18491849
{
18501850
using (X509Certificate2 cert = Certificates.SlhDsaSha2_128s_Ietf.GetCertificate())
1851-
using (SlhDsa key = SlhDsa.ImportSlhDsaSecretKey(SlhDsaAlgorithm.SlhDsaSha2_128s, SlhDsaTestData.IetfSlhDsaSha2_128sPrivateKeyValue))
1851+
using (SlhDsa key = SlhDsa.ImportSlhDsaPrivateKey(SlhDsaAlgorithm.SlhDsaSha2_128s, SlhDsaTestData.IetfSlhDsaSha2_128sPrivateKeyValue))
18521852
{
18531853
useSigner(new CmsSigner(SubjectIdentifierType.SubjectKeyIdentifier, cert, key));
18541854
}

0 commit comments

Comments
 (0)