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

7.0-preview6_System.Security.Cryptography.md « Microsoft.NETCore.App « preview6 « api-diff « preview « 7.0 « release-notes - github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db3de7d8efdec8523e74f3f333909bbcdcba7d76 (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
27
28
29
30
# System.Security.Cryptography

``` diff
 namespace System.Security.Cryptography {
-    [UnsupportedOSPlatformAttribute("browser")]
-    public class HMACSHA1 : HMAC
+    public class HMACSHA1 : HMAC
-    [UnsupportedOSPlatformAttribute("browser")]
-    public class HMACSHA256 : HMAC
+    public class HMACSHA256 : HMAC
-    [UnsupportedOSPlatformAttribute("browser")]
-    public class HMACSHA384 : HMAC
+    public class HMACSHA384 : HMAC
-    [UnsupportedOSPlatformAttribute("browser")]
-    public class HMACSHA512 : HMAC
+    public class HMACSHA512 : HMAC
     public sealed class IncrementalHash : IDisposable {
-        [UnsupportedOSPlatformAttribute("browser")]
-        public static IncrementalHash CreateHMAC(HashAlgorithmName hashAlgorithm, byte[] key);
+        public static IncrementalHash CreateHMAC(HashAlgorithmName hashAlgorithm, byte[] key);
-        [UnsupportedOSPlatformAttribute("browser")]
-        public static IncrementalHash CreateHMAC(HashAlgorithmName hashAlgorithm, ReadOnlySpan<byte> key);
+        public static IncrementalHash CreateHMAC(HashAlgorithmName hashAlgorithm, ReadOnlySpan<byte> key);
     }
     public static class PemEncoding {
+        public static string WriteString(ReadOnlySpan<char> label, ReadOnlySpan<byte> data);
     }
 }
```