|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 | <PropertyGroup> |
3 | 3 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
4 | 4 | <DefineConstants>$(DefineConstants);INTERNAL_ASYMMETRIC_IMPLEMENTATIONS</DefineConstants> |
|
16 | 16 | </PropertyGroup> |
17 | 17 | <ItemGroup> |
18 | 18 | <Compile Include="System\Security\Cryptography\CryptoConfig.Common.cs" /> |
| 19 | + <Compile Include="Internal\Cryptography\HashAlgorithmNames.cs" /> |
| 20 | + <Compile Include="Internal\Cryptography\HMACCommon.cs" /> |
| 21 | + <Compile Include="Internal\Cryptography\RandomNumberGeneratorImplementation.cs" /> |
| 22 | + <Compile Include="System\Security\Cryptography\IncrementalHash.cs" /> |
| 23 | + <Compile Include="System\Security\Cryptography\RandomNumberGenerator.cs" /> |
| 24 | + <Compile Include="System\Security\Cryptography\SHA1.cs" /> |
| 25 | + <Compile Include="System\Security\Cryptography\SHA1Managed.cs" /> |
| 26 | + <Compile Include="System\Security\Cryptography\SHA256.cs" /> |
| 27 | + <Compile Include="System\Security\Cryptography\SHA256Managed.cs" /> |
| 28 | + <Compile Include="System\Security\Cryptography\SHA384.cs" /> |
| 29 | + <Compile Include="System\Security\Cryptography\SHA384Managed.cs" /> |
| 30 | + <Compile Include="System\Security\Cryptography\SHA512.cs" /> |
| 31 | + <Compile Include="System\Security\Cryptography\SHA512Managed.cs" /> |
| 32 | + <Compile Include="$(CommonPath)Internal\Cryptography\HashProvider.cs" |
| 33 | + Link="Internal\Cryptography\HashProvider.cs" /> |
| 34 | + <Compile Include="$(CommonPath)System\Obsoletions.cs" |
| 35 | + Link="Common\System\Obsoletions.cs" /> |
19 | 36 | </ItemGroup> |
20 | 37 | <ItemGroup Condition="'$(TargetsBrowser)' != 'true'"> |
21 | 38 | <Compile Include="Internal\Cryptography\AesImplementation.cs" /> |
22 | 39 | <Compile Include="Internal\Cryptography\DesImplementation.cs" /> |
23 | 40 | <Compile Include="Internal\Cryptography\Helpers.cs" /> |
24 | | - <Compile Include="Internal\Cryptography\HMACCommon.cs" /> |
25 | | - <Compile Include="Internal\Cryptography\HashAlgorithmNames.cs" /> |
26 | | - <Compile Include="Internal\Cryptography\RandomNumberGeneratorImplementation.cs" /> |
27 | 41 | <Compile Include="Internal\Cryptography\RC2Implementation.cs" /> |
28 | 42 | <Compile Include="Internal\Cryptography\RijndaelImplementation.cs" /> |
29 | 43 | <Compile Include="Internal\Cryptography\TripleDesImplementation.cs" /> |
|
61 | 75 | <Compile Include="System\Security\Cryptography\HKDF.cs" /> |
62 | 76 | <Compile Include="System\Security\Cryptography\MaskGenerationMethod.cs" /> |
63 | 77 | <Compile Include="System\Security\Cryptography\MD5.cs" /> |
64 | | - <Compile Include="System\Security\Cryptography\SHA1.cs" /> |
65 | | - <Compile Include="System\Security\Cryptography\SHA1Managed.cs" /> |
66 | | - <Compile Include="System\Security\Cryptography\SHA256.cs" /> |
67 | | - <Compile Include="System\Security\Cryptography\SHA256Managed.cs" /> |
68 | | - <Compile Include="System\Security\Cryptography\SHA384.cs" /> |
69 | | - <Compile Include="System\Security\Cryptography\SHA384Managed.cs" /> |
70 | | - <Compile Include="System\Security\Cryptography\SHA512.cs" /> |
71 | | - <Compile Include="System\Security\Cryptography\SHA512Managed.cs" /> |
72 | 78 | <Compile Include="System\Security\Cryptography\HMACMD5.cs" /> |
73 | 79 | <Compile Include="System\Security\Cryptography\HMACSHA1.cs" /> |
74 | 80 | <Compile Include="System\Security\Cryptography\HMACSHA256.cs" /> |
75 | 81 | <Compile Include="System\Security\Cryptography\HMACSHA384.cs" /> |
76 | 82 | <Compile Include="System\Security\Cryptography\HMACSHA512.cs" /> |
77 | | - <Compile Include="System\Security\Cryptography\IncrementalHash.cs" /> |
78 | 83 | <Compile Include="System\Security\Cryptography\PKCS1MaskGenerationMethod.cs" /> |
79 | | - <Compile Include="System\Security\Cryptography\RandomNumberGenerator.cs" /> |
80 | 84 | <Compile Include="System\Security\Cryptography\RC2.cs" /> |
81 | 85 | <Compile Include="System\Security\Cryptography\Rijndael.cs" /> |
82 | 86 | <Compile Include="System\Security\Cryptography\RijndaelManaged.cs" /> |
|
104 | 108 | Link="Internal\Cryptography\BasicSymmetricCipher.cs" /> |
105 | 109 | <Compile Include="$(CommonPath)Internal\Cryptography\Helpers.cs" |
106 | 110 | Link="Internal\Cryptography\Helpers.cs" /> |
107 | | - <Compile Include="$(CommonPath)Internal\Cryptography\HashProvider.cs" |
108 | | - Link="Internal\Cryptography\HashProvider.cs" /> |
109 | 111 | <Compile Include="$(CommonPath)Internal\Cryptography\PemKeyImportHelpers.cs" |
110 | 112 | Link="Common\Internal\Cryptography\PemKeyImportHelpers.cs" /> |
111 | 113 | <Compile Include="$(CommonPath)Internal\Cryptography\UniversalCryptoTransform.cs" |
|
114 | 116 | Link="Internal\Cryptography\UniversalCryptoEncryptor.cs" /> |
115 | 117 | <Compile Include="$(CommonPath)Internal\Cryptography\UniversalCryptoDecryptor.cs" |
116 | 118 | Link="Internal\Cryptography\UniversalCryptoDecryptor.cs" /> |
117 | | - <Compile Include="$(CommonPath)System\Obsoletions.cs" |
118 | | - Link="Common\System\Obsoletions.cs" /> |
119 | 119 | <Compile Include="$(CommonPath)System\Memory\PointerMemoryManager.cs" |
120 | 120 | Link="Common\System\Memory\PointerMemoryManager.cs" /> |
121 | 121 | <Compile Include="$(CommonPath)System\Security\Cryptography\CryptoPool.cs" |
|
688 | 688 | <Compile Include="Internal\Cryptography\Pbkdf2Implementation.Managed.cs" /> |
689 | 689 | </ItemGroup> |
690 | 690 | <ItemGroup Condition=" '$(TargetsBrowser)' == 'true'"> |
691 | | - <Compile Include="$(CommonPath)Internal\Cryptography\HashProvider.cs" |
692 | | - Link="Internal\Cryptography\HashProvider.cs" /> |
693 | 691 | <Compile Include="$(CommonPath)Interop\Unix\System.Native\Interop.GetRandomBytes.cs" |
694 | 692 | Link="Common\Interop\Unix\System.Native\Interop.GetRandomBytes.cs" /> |
695 | 693 | <Compile Include="$(CommonPath)Interop\Unix\Interop.Libraries.cs" |
696 | 694 | Link="Common\Interop\Unix\Interop.Libraries.cs" /> |
697 | 695 | <Compile Include="$(CommonPath)System\Sha1ForNonSecretPurposes.cs" |
698 | 696 | Link="Common\System\Sha1ForNonSecretPurposes.cs" /> |
699 | | - <Compile Include="Internal\Cryptography\HashAlgorithmNames.cs" /> |
700 | 697 | <Compile Include="Internal\Cryptography\HashProviderDispenser.Browser.cs" /> |
701 | | - <Compile Include="Internal\Cryptography\HMACCommon.cs" /> |
702 | | - <Compile Include="Internal\Cryptography\RandomNumberGeneratorImplementation.cs" /> |
703 | 698 | <Compile Include="Internal\Cryptography\RandomNumberGeneratorImplementation.Browser.cs" /> |
704 | 699 | <Compile Include="Internal\Cryptography\SHAHashProvider.Browser.cs" /> |
705 | 700 | <Compile Include="System\Security\Cryptography\AesCcm.NotSupported.cs" /> |
706 | 701 | <Compile Include="System\Security\Cryptography\AesGcm.NotSupported.cs" /> |
707 | 702 | <Compile Include="System\Security\Cryptography\ChaCha20Poly1305.NotSupported.cs" /> |
708 | 703 | <Compile Include="System\Security\Cryptography\CryptoConfig.Browser.cs" /> |
709 | | - <Compile Include="System\Security\Cryptography\RandomNumberGenerator.cs" /> |
710 | | - <Compile Include="System\Security\Cryptography\IncrementalHash.cs" /> |
711 | | - <Compile Include="System\Security\Cryptography\SHA1.cs" /> |
712 | | - <Compile Include="System\Security\Cryptography\SHA1Managed.cs" /> |
713 | | - <Compile Include="System\Security\Cryptography\SHA256.cs" /> |
714 | | - <Compile Include="System\Security\Cryptography\SHA256Managed.cs" /> |
715 | | - <Compile Include="System\Security\Cryptography\SHA384.cs" /> |
716 | | - <Compile Include="System\Security\Cryptography\SHA384Managed.cs" /> |
717 | | - <Compile Include="System\Security\Cryptography\SHA512.cs" /> |
718 | | - <Compile Include="System\Security\Cryptography\SHA512Managed.cs" /> |
719 | 704 | </ItemGroup> |
720 | 705 | <ItemGroup> |
721 | 706 | <Reference Include="System.Collections" /> |
|
0 commit comments