Welcome to mirror list, hosted at ThFree Co, Russian Federation.

7.0-preview5_System.Security.Cryptography.md « Microsoft.NETCore.App « preview5 « api-diff « preview « 7.0 « release-notes - github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41feda09a784dc2e38383a80a18ad18f626ed295 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# System.Security.Cryptography

``` diff
 namespace System.Security.Cryptography {
     public sealed class DSACng : DSA {
-        protected override byte[] HashData(byte[] data, int offset, int count, HashAlgorithmName hashAlgorithm);
-        protected override byte[] HashData(Stream data, HashAlgorithmName hashAlgorithm);
-        protected override bool TryHashData(ReadOnlySpan<byte> source, Span<byte> destination, HashAlgorithmName hashAlgorithm, out int bytesWritten);
     }
     public sealed class ECDsaCng : ECDsa {
-        protected override byte[] HashData(byte[] data, int offset, int count, HashAlgorithmName hashAlgorithm);
-        protected override byte[] HashData(Stream data, HashAlgorithmName hashAlgorithm);
-        protected override bool TryHashData(ReadOnlySpan<byte> source, Span<byte> destination, HashAlgorithmName hashAlgorithm, out int bytesWritten);
     }
     public sealed class RSACng : RSA {
-        protected override byte[] HashData(byte[] data, int offset, int count, HashAlgorithmName hashAlgorithm);
-        protected override byte[] HashData(Stream data, HashAlgorithmName hashAlgorithm);
-        protected override bool TryHashData(ReadOnlySpan<byte> data, Span<byte> destination, HashAlgorithmName hashAlgorithm, out int bytesWritten);
     }
     public sealed class RSACryptoServiceProvider : RSA, ICspAsymmetricAlgorithm {
-        protected override byte[] HashData(byte[] data, int offset, int count, HashAlgorithmName hashAlgorithm);
-        protected override byte[] HashData(Stream data, HashAlgorithmName hashAlgorithm);
     }
 }
```