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

github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release-notes/7.0/preview/api-diff/preview5/Microsoft.NETCore.App/7.0-preview5_System.Security.Cryptography.md')
-rw-r--r--release-notes/7.0/preview/api-diff/preview5/Microsoft.NETCore.App/7.0-preview5_System.Security.Cryptography.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/release-notes/7.0/preview/api-diff/preview5/Microsoft.NETCore.App/7.0-preview5_System.Security.Cryptography.md b/release-notes/7.0/preview/api-diff/preview5/Microsoft.NETCore.App/7.0-preview5_System.Security.Cryptography.md
new file mode 100644
index 00000000..41feda09
--- /dev/null
+++ b/release-notes/7.0/preview/api-diff/preview5/Microsoft.NETCore.App/7.0-preview5_System.Security.Cryptography.md
@@ -0,0 +1,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);
+ }
+ }
+```
+