Skip to content

Commit 7a51f3e

Browse files
committed
SP800108: Minor fixes
1 parent e8c6257 commit 7a51f3e

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

src/libraries/Microsoft.Bcl.Cryptography/src/Microsoft.Bcl.Cryptography.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
Once this package has shipped a stable version, the following line
88
should be removed in order to re-enable validation. -->
99
<DisablePackageBaselineValidation>true</DisablePackageBaselineValidation>
10-
<PackageDescription>Provides support for some cryptographic primitives for .NET Framework and .NET Standard
10+
<PackageDescription>Provides support for some cryptographic primitives for .NET Framework and .NET Standard.
11+
1112
Commonly Used Types:
1213
System.Security.Cryptography.SP800108HmacCounterKdf</PackageDescription>
1314
</PropertyGroup>
@@ -68,7 +69,7 @@ System.Security.Cryptography.SP800108HmacCounterKdf</PackageDescription>
6869
<Compile Include="System\Security\Cryptography\SP800108HmacCounterKdfImplementationManaged.cs" />
6970
</ItemGroup>
7071

71-
<ItemGroup>
72+
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' != '.NETCoreApp'">
7273
<PackageReference Include="System.Memory" Version="$(SystemMemoryVersion)" />
7374
</ItemGroup>
7475

src/libraries/System.Security.Cryptography/src/System.Security.Cryptography.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@
592592
<Compile Include="System\Security\Cryptography\RSACryptoServiceProvider.NotSupported.cs" />
593593
<Compile Include="System\Security\Cryptography\RSA.Create.NotSupported.cs" />
594594
<Compile Include="System\Security\Cryptography\SP800108HmacCounterKdf.Managed.cs" />
595-
<Compile Include="System\Security\Cryptography\SP800108HmacCounterKdfImplementationManaged.netcoreapp.cs" />
595+
<Compile Include="System\Security\Cryptography\SP800108HmacCounterKdfImplementationManaged.cs" />
596596
<Compile Include="System\Security\Cryptography\SHAHashProvider.Browser.Managed.cs" />
597597
<Compile Include="System\Security\Cryptography\TripleDESCryptoServiceProvider.NotSupported.cs" />
598598
<Compile Include="System\Security\Cryptography\TripleDesImplementation.NotSupported.cs" />
@@ -834,7 +834,7 @@
834834
<Compile Include="System\Security\Cryptography\RSAWrapper.cs" />
835835
<Compile Include="System\Security\Cryptography\SafeEvpPKeyHandle.OpenSsl.cs" />
836836
<Compile Include="System\Security\Cryptography\SP800108HmacCounterKdf.Managed.cs" />
837-
<Compile Include="System\Security\Cryptography\SP800108HmacCounterKdfImplementationManaged.netcoreapp.cs" />
837+
<Compile Include="System\Security\Cryptography\SP800108HmacCounterKdfImplementationManaged.cs" />
838838
<Compile Include="System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs" />
839839
<Compile Include="System\Security\Cryptography\TripleDesImplementation.OpenSsl.cs" />
840840
<AsnXml Include="System\Security\Cryptography\X509Certificates\Asn1\DistributionPointAsn.xml" />
@@ -1044,7 +1044,7 @@
10441044
<Compile Include="System\Security\Cryptography\RSA.Create.Android.cs" />
10451045
<Compile Include="System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs" />
10461046
<Compile Include="System\Security\Cryptography\SP800108HmacCounterKdf.Managed.cs" />
1047-
<Compile Include="System\Security\Cryptography\SP800108HmacCounterKdfImplementationManaged.netcoreapp.cs" />
1047+
<Compile Include="System\Security\Cryptography\SP800108HmacCounterKdfImplementationManaged.cs" />
10481048
<Compile Include="System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs" />
10491049
<Compile Include="System\Security\Cryptography\TripleDesImplementation.OpenSsl.cs" />
10501050
<Compile Include="System\Security\Cryptography\X509Certificates\AndroidCertificatePal.cs" />
@@ -1221,7 +1221,7 @@
12211221
<Compile Include="System\Security\Cryptography\RSA.Create.SecurityTransforms.cs" />
12221222
<Compile Include="System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs" />
12231223
<Compile Include="System\Security\Cryptography\SP800108HmacCounterKdf.Managed.cs" />
1224-
<Compile Include="System\Security\Cryptography\SP800108HmacCounterKdfImplementationManaged.netcoreapp.cs" />
1224+
<Compile Include="System\Security\Cryptography\SP800108HmacCounterKdfImplementationManaged.cs" />
12251225
<Compile Include="System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs" />
12261226
<Compile Include="System\Security\Cryptography\TripleDesImplementation.Apple.cs" />
12271227
<Compile Include="System\Security\Cryptography\X509Certificates\AppleCertificatePal.cs" />
@@ -1822,7 +1822,7 @@
18221822
<Compile Include="System\Security\Cryptography\RSACng.ImportExport.cs" />
18231823
<Compile Include="System\Security\Cryptography\RSACng.Key.cs" />
18241824
<Compile Include="System\Security\Cryptography\SP800108HmacCounterKdf.Windows.cs" />
1825-
<Compile Include="System\Security\Cryptography\SP800108HmacCounterKdfImplementationCng.netcoreapp.cs" />
1825+
<Compile Include="System\Security\Cryptography\SP800108HmacCounterKdfImplementationCng.cs" />
18261826
<Compile Include="System\Security\Cryptography\TripleDESCng.Windows.cs" />
18271827
<Compile Include="System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs" />
18281828
<Compile Include="System\Security\Cryptography\TripleDesImplementation.Windows.cs" />

0 commit comments

Comments
 (0)