f093c6bac69a408dc6d02eb333e39375c1f44042
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Security.Cryptography.Cng.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Security.Cryptography.Cng</name>
5   </assembly>
6   <members>
7     <member name="T:Microsoft.Win32.SafeHandles.SafeNCryptHandle">
8       <summary>Provides a safe handle that can be used by Cryptography Next Generation (CNG) objects.</summary>
9     </member>
10     <member name="M:Microsoft.Win32.SafeHandles.SafeNCryptHandle.#ctor">
11       <summary>Initializes a new instance of the <see cref="T:Microsoft.Win32.SafeHandles.SafeNCryptHandle" /> class.</summary>
12     </member>
13     <member name="M:Microsoft.Win32.SafeHandles.SafeNCryptHandle.#ctor(System.IntPtr,System.Runtime.InteropServices.SafeHandle)">
14       <summary>Instantiates a new instance of the <see cref="T:Microsoft.Win32.SafeHandles.SafeNCryptHandle" /> class.</summary>
15       <param name="handle">The pre-existing handle to use. Using <see cref="F:System.IntPtr.Zero" /> returns an invalid handle.</param>
16       <param name="parentHandle">The parent handle of this <see cref="T:Microsoft.Win32.SafeHandles.SafeNCryptHandle" />.</param>
17       <exception cref="T:System.ArgumentNullException">
18         <paramref name="parentHandle" /> is <see langword="null" />.</exception>
19       <exception cref="T:System.ArgumentException">
20         <paramref name="parentHandle" /> is closed.  
21   
22  -or-  
23   
24  <paramref name="parentHandle" /> is invalid.</exception>
25     </member>
26     <member name="M:Microsoft.Win32.SafeHandles.SafeNCryptHandle.ReleaseHandle">
27       <summary>Releases a handle used by a Cryptography Next Generation (CNG) object.</summary>
28       <returns>
29         <see langword="true" /> if the handle is released successfully; otherwise, <see langword="false" />.</returns>
30     </member>
31     <member name="M:Microsoft.Win32.SafeHandles.SafeNCryptHandle.ReleaseNativeHandle">
32       <summary>Releases a native handle used by a Cryptography Next Generation (CNG) object.</summary>
33       <returns>
34         <see langword="true" /> if the handle is released successfully; otherwise, <see langword="false" />.</returns>
35     </member>
36     <member name="P:Microsoft.Win32.SafeHandles.SafeNCryptHandle.IsInvalid">
37       <summary>Gets a value that indicates whether the handle is invalid.</summary>
38       <returns>
39         <see langword="true" /> if the handle is not valid; otherwise, <see langword="false" />.</returns>
40     </member>
41     <member name="T:Microsoft.Win32.SafeHandles.SafeNCryptKeyHandle">
42       <summary>Provides a safe handle that represents a key (NCRYPT_KEY_HANDLE).</summary>
43     </member>
44     <member name="M:Microsoft.Win32.SafeHandles.SafeNCryptKeyHandle.#ctor">
45       <summary>Initializes a new instance of the <see cref="T:Microsoft.Win32.SafeHandles.SafeNCryptKeyHandle" /> class.</summary>
46     </member>
47     <member name="M:Microsoft.Win32.SafeHandles.SafeNCryptKeyHandle.#ctor(System.IntPtr,System.Runtime.InteropServices.SafeHandle)">
48       <summary>Instantiates a new instance of the <see cref="T:Microsoft.Win32.SafeHandles.SafeNCryptKeyHandle" /> class.</summary>
49       <param name="handle">The pre-existing handle to use. Using <see cref="F:System.IntPtr.Zero" /> returns an invalid handle.</param>
50       <param name="parentHandle">The parent handle of this <see cref="T:Microsoft.Win32.SafeHandles.SafeNCryptKeyHandle" />.</param>
51       <exception cref="T:System.ArgumentNullException">
52         <paramref name="parentHandle" /> is <see langword="null" />.</exception>
53       <exception cref="T:System.ArgumentException">
54         <paramref name="parentHandle" /> is closed.  
55   
56  -or-  
57   
58  <paramref name="parentHandle" /> is invalid.</exception>
59     </member>
60     <member name="T:Microsoft.Win32.SafeHandles.SafeNCryptProviderHandle">
61       <summary>Provides a safe handle that represents a key storage provider (NCRYPT_PROV_HANDLE).</summary>
62     </member>
63     <member name="M:Microsoft.Win32.SafeHandles.SafeNCryptProviderHandle.#ctor">
64       <summary>Initializes a new instance of the <see cref="T:Microsoft.Win32.SafeHandles.SafeNCryptProviderHandle" /> class.</summary>
65     </member>
66     <member name="T:Microsoft.Win32.SafeHandles.SafeNCryptSecretHandle">
67       <summary>Provides a safe handle that represents a secret agreement value (NCRYPT_SECRET_HANDLE).</summary>
68     </member>
69     <member name="M:Microsoft.Win32.SafeHandles.SafeNCryptSecretHandle.#ctor">
70       <summary>Initializes a new instance of the <see cref="T:Microsoft.Win32.SafeHandles.SafeNCryptSecretHandle" /> class.</summary>
71     </member>
72     <member name="T:System.Security.Cryptography.AesCng">
73       <summary>Provides a Cryptography Next Generation (CNG) implementation of the Advanced Encryption Standard (AES) algorithm.</summary>
74     </member>
75     <member name="M:System.Security.Cryptography.AesCng.#ctor">
76       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.AesCng" /> class with an ephemeral key.</summary>
77     </member>
78     <member name="M:System.Security.Cryptography.AesCng.#ctor(System.String)">
79       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.AesCng" /> class with the specified key name, which represents an existing persisted AES key.</summary>
80       <param name="keyName">The name of the key.</param>
81       <exception cref="T:System.ArgumentNullException">
82         <paramref name="keyName" /> is <see langword="null" />.</exception>
83       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
84       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
85     </member>
86     <member name="M:System.Security.Cryptography.AesCng.#ctor(System.String,System.Security.Cryptography.CngProvider)">
87       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.AesCng" /> class with the specified key name, which represents an existing persisted AES key, and the specified key storage provider (KSP).</summary>
88       <param name="keyName">The name of the key.</param>
89       <param name="provider">The KSP that contains the key.</param>
90       <exception cref="T:System.ArgumentNullException">
91         <paramref name="keyName" /> is <see langword="null" />.  
92   
93  -or-  
94   
95  <paramref name="provider" /> is <see langword="null" />.</exception>
96       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
97       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
98     </member>
99     <member name="M:System.Security.Cryptography.AesCng.#ctor(System.String,System.Security.Cryptography.CngProvider,System.Security.Cryptography.CngKeyOpenOptions)">
100       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.AesCng" /> class with the specified key name, which represents an existing persisted AES key,  the specified key storage provider (KSP) and key open options.</summary>
101       <param name="keyName">The name of the key.</param>
102       <param name="provider">The KSP that contains the key.</param>
103       <param name="openOptions">A bitwise combination of the enumeration values that specify options for opening the key, such as where the key is opened from (machine or user storage) and whether to suppress UI prompting.</param>
104       <exception cref="T:System.ArgumentNullException">
105         <paramref name="keyName" /> is <see langword="null" />.  
106   
107  -or-  
108   
109  <paramref name="provider" /> is <see langword="null" />.</exception>
110       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
111       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
112     </member>
113     <member name="M:System.Security.Cryptography.AesCng.CreateDecryptor">
114       <summary>Creates a symmetric AES decryptor object with the current key and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />).</summary>
115       <returns>A symmetric AES decryptor object.</returns>
116     </member>
117     <member name="M:System.Security.Cryptography.AesCng.CreateDecryptor(System.Byte[],System.Byte[])">
118       <summary>Creates a symmetric AES decryptor object with the specified key and initialization vector (IV).</summary>
119       <param name="rgbKey">The secret key to use for the AES algorithm. The key size must be 128, 192, or 256 bits.</param>
120       <param name="rgbIV">The initialization vector to use for the AES algorithm.</param>
121       <exception cref="T:System.ArgumentNullException">
122         <paramref name="rgbKey" /> is <see langword="null" />.</exception>
123       <exception cref="T:System.ArgumentException">
124         <paramref name="rgbKey" /> is not a valid size for this algorithm.  
125   
126  -or-  
127   
128  <paramref name="rgbIV" /> size does not match the block size for this algorithm.</exception>
129       <exception cref="T:System.Security.Cryptography.CryptographicException">
130         <paramref name="rgbKey" /> is a known weak key for this algorithm and cannot be used.  
131   
132  -or-  
133   
134  <paramref name="rgbIV" /> is <see langword="null" />.</exception>
135       <returns>A symmetric AES decryptor object.</returns>
136     </member>
137     <member name="M:System.Security.Cryptography.AesCng.CreateEncryptor">
138       <summary>Creates a symmetric AES encryptor object using the current key and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />).</summary>
139       <returns>A symmetric AES encryptor object.</returns>
140     </member>
141     <member name="M:System.Security.Cryptography.AesCng.CreateEncryptor(System.Byte[],System.Byte[])">
142       <summary>Creates a symmetric AES encryptor object with the specified key and initialization vector (IV).</summary>
143       <param name="rgbKey">The secret key to use for the AES algorithm. The key size must be 128, 192, or 256 bits.</param>
144       <param name="rgbIV">The initialization vector to use for the AES algorithm.</param>
145       <exception cref="T:System.ArgumentNullException">
146         <paramref name="rgbKey" /> is <see langword="null" />.</exception>
147       <exception cref="T:System.ArgumentException">
148         <paramref name="rgbKey" /> is not a valid size for this algorithm.  
149   
150  -or-  
151   
152  <paramref name="rgbIV" /> size does not match the block size for this algorithm.</exception>
153       <exception cref="T:System.Security.Cryptography.CryptographicException">
154         <paramref name="rgbKey" /> is a known weak key for this algorithm and cannot be used.  
155   
156  -or-  
157   
158  <paramref name="rgbIV" /> is <see langword="null" />.</exception>
159       <returns>A symmetric AES encryptor object.</returns>
160     </member>
161     <member name="M:System.Security.Cryptography.AesCng.GenerateIV">
162       <summary>Generates a random initialization vector (IV) to use for the AES algorithm.</summary>
163     </member>
164     <member name="M:System.Security.Cryptography.AesCng.GenerateKey">
165       <summary>Generates a random key to use for the AES algorithm.</summary>
166     </member>
167     <member name="P:System.Security.Cryptography.AesCng.Key">
168       <summary>Gets or sets the key for the <see cref="T:System.Security.Cryptography.AesCng" /> algorithm.</summary>
169       <returns>The key for the <see cref="T:System.Security.Cryptography.AesCng" /> algorithm.</returns>
170     </member>
171     <member name="P:System.Security.Cryptography.AesCng.KeySize">
172       <summary>Gets or sets the size, in bits, of the secret key used by the <see cref="T:System.Security.Cryptography.AesCng" /> algorithm.</summary>
173       <returns>The size, in bits, of the secret key used by the <see cref="T:System.Security.Cryptography.AesCng" /> algorithm.</returns>
174     </member>
175     <member name="T:System.Security.Cryptography.CngAlgorithm">
176       <summary>Encapsulates the name of an encryption algorithm.</summary>
177     </member>
178     <member name="M:System.Security.Cryptography.CngAlgorithm.#ctor(System.String)">
179       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CngAlgorithm" /> class.</summary>
180       <param name="algorithm">The name of the algorithm to initialize.</param>
181       <exception cref="T:System.ArgumentNullException">The <paramref name="algorithm" /> parameter is <see langword="null" />.</exception>
182       <exception cref="T:System.ArgumentException">The <paramref name="algorithm" /> parameter length is 0 (zero).</exception>
183     </member>
184     <member name="M:System.Security.Cryptography.CngAlgorithm.Equals(System.Object)">
185       <summary>Compares the specified object to the current <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object.</summary>
186       <param name="obj">An object to be compared to the current <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object.</param>
187       <returns>
188         <see langword="true" /> if the <paramref name="obj" /> parameter is a <see cref="T:System.Security.Cryptography.CngAlgorithm" /> that specifies the same algorithm as the current object; otherwise, <see langword="false" />.</returns>
189     </member>
190     <member name="M:System.Security.Cryptography.CngAlgorithm.Equals(System.Security.Cryptography.CngAlgorithm)">
191       <summary>Compares the specified <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object to the current <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object.</summary>
192       <param name="other">An object to be compared to the current <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object.</param>
193       <returns>
194         <see langword="true" /> if the <paramref name="other" /> parameter specifies the same algorithm as the current object; otherwise, <see langword="false" />.</returns>
195     </member>
196     <member name="M:System.Security.Cryptography.CngAlgorithm.GetHashCode">
197       <summary>Generates a hash value for the algorithm name that is embedded in the current <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object.</summary>
198       <returns>The hash value of the embedded algorithm name.</returns>
199     </member>
200     <member name="M:System.Security.Cryptography.CngAlgorithm.op_Equality(System.Security.Cryptography.CngAlgorithm,System.Security.Cryptography.CngAlgorithm)">
201       <summary>Determines whether two <see cref="T:System.Security.Cryptography.CngAlgorithm" /> objects specify the same algorithm name.</summary>
202       <param name="left">An object that specifies an algorithm name.</param>
203       <param name="right">A second object, to be compared to the object that is identified by the <paramref name="left" /> parameter.</param>
204       <returns>
205         <see langword="true" /> if the two objects specify the same algorithm name; otherwise, <see langword="false" />.</returns>
206     </member>
207     <member name="M:System.Security.Cryptography.CngAlgorithm.op_Inequality(System.Security.Cryptography.CngAlgorithm,System.Security.Cryptography.CngAlgorithm)">
208       <summary>Determines whether two <see cref="T:System.Security.Cryptography.CngAlgorithm" /> objects do not specify the same algorithm.</summary>
209       <param name="left">An object that specifies an algorithm name.</param>
210       <param name="right">A second object, to be compared to the object that is identified by the <paramref name="left" /> parameter.</param>
211       <returns>
212         <see langword="true" /> if the two objects do not specify the same algorithm name; otherwise, <see langword="false" />.</returns>
213     </member>
214     <member name="M:System.Security.Cryptography.CngAlgorithm.ToString">
215       <summary>Gets the name of the algorithm that the current <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object specifies.</summary>
216       <returns>The embedded algorithm name.</returns>
217     </member>
218     <member name="P:System.Security.Cryptography.CngAlgorithm.Algorithm">
219       <summary>Gets the algorithm name that the current <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object specifies.</summary>
220       <returns>The embedded algorithm name.</returns>
221     </member>
222     <member name="P:System.Security.Cryptography.CngAlgorithm.ECDiffieHellman">
223       <summary>Gets a <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object that specifies an Elliptic Curve Diffie-Hellman (ECDH) key exchange algorithm whose curve is described via a key property.</summary>
224       <returns>An object that specifies an ECDH key exchange algorithm whose curve is described via a key property.</returns>
225     </member>
226     <member name="P:System.Security.Cryptography.CngAlgorithm.ECDiffieHellmanP256">
227       <summary>Gets a <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object that specifies an Elliptic Curve Diffie-Hellman (ECDH) key exchange algorithm that uses the P-256 curve.</summary>
228       <returns>An object that specifies an ECDH algorithm that uses the P-256 curve.</returns>
229     </member>
230     <member name="P:System.Security.Cryptography.CngAlgorithm.ECDiffieHellmanP384">
231       <summary>Gets a <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object that specifies an Elliptic Curve Diffie-Hellman (ECDH) key exchange algorithm that uses the P-384 curve.</summary>
232       <returns>An object that specifies an ECDH algorithm that uses the P-384 curve.</returns>
233     </member>
234     <member name="P:System.Security.Cryptography.CngAlgorithm.ECDiffieHellmanP521">
235       <summary>Gets a <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object that specifies an Elliptic Curve Diffie-Hellman (ECDH) key exchange algorithm that uses the P-521 curve.</summary>
236       <returns>An object that specifies an ECDH algorithm that uses the P-521 curve.</returns>
237     </member>
238     <member name="P:System.Security.Cryptography.CngAlgorithm.ECDsa">
239       <summary>Gets a <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object that specifies an Elliptic Curve Digital Signature Algorithm (ECDSA) whose curve is described via a key property.</summary>
240       <returns>An object that specifies an ECDSA whose curve is described via a key property.</returns>
241     </member>
242     <member name="P:System.Security.Cryptography.CngAlgorithm.ECDsaP256">
243       <summary>Gets a <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object that specifies an Elliptic Curve Digital Signature Algorithm (ECDSA) that uses the P-256 curve.</summary>
244       <returns>An object that specifies an ECDSA algorithm that uses the P-256 curve.</returns>
245     </member>
246     <member name="P:System.Security.Cryptography.CngAlgorithm.ECDsaP384">
247       <summary>Gets a <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object that specifies an Elliptic Curve Digital Signature Algorithm (ECDSA) that uses the P-384 curve.</summary>
248       <returns>An object that specifies an ECDSA algorithm that uses the P-384 curve.</returns>
249     </member>
250     <member name="P:System.Security.Cryptography.CngAlgorithm.ECDsaP521">
251       <summary>Gets a new <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object that specifies an Elliptic Curve Digital Signature Algorithm (ECDSA) that uses the P-521 curve.</summary>
252       <returns>An object that specifies an ECDSA algorithm that uses the P-521 curve.</returns>
253     </member>
254     <member name="P:System.Security.Cryptography.CngAlgorithm.MD5">
255       <summary>Gets a new <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object that specifies the Message Digest 5 (MD5) hash algorithm.</summary>
256       <returns>An object that specifies the MD5 algorithm.</returns>
257     </member>
258     <member name="P:System.Security.Cryptography.CngAlgorithm.Rsa">
259       <summary>Gets a new <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object that specifies the RSA hash algorithm.</summary>
260       <returns>An object that specifies the RSA algorithm.</returns>
261     </member>
262     <member name="P:System.Security.Cryptography.CngAlgorithm.Sha1">
263       <summary>Gets a new <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object that specifies the Secure Hash Algorithm 1 (SHA-1) algorithm.</summary>
264       <returns>An object that specifies the SHA-1 algorithm.</returns>
265     </member>
266     <member name="P:System.Security.Cryptography.CngAlgorithm.Sha256">
267       <summary>Gets a new <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object that specifies the Secure Hash Algorithm 256 (SHA-256) algorithm.</summary>
268       <returns>An object that specifies the SHA-256 algorithm.</returns>
269     </member>
270     <member name="P:System.Security.Cryptography.CngAlgorithm.Sha384">
271       <summary>Gets a new <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object that specifies the Secure Hash Algorithm 384 (SHA-384) algorithm.</summary>
272       <returns>An object that specifies the SHA-384 algorithm.</returns>
273     </member>
274     <member name="P:System.Security.Cryptography.CngAlgorithm.Sha512">
275       <summary>Gets a new <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object that specifies the Secure Hash Algorithm 512 (SHA-512) algorithm.</summary>
276       <returns>An object that specifies the SHA-512 algorithm.</returns>
277     </member>
278     <member name="T:System.Security.Cryptography.CngAlgorithmGroup">
279       <summary>Encapsulates the name of an encryption algorithm group.</summary>
280     </member>
281     <member name="M:System.Security.Cryptography.CngAlgorithmGroup.#ctor(System.String)">
282       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CngAlgorithmGroup" /> class.</summary>
283       <param name="algorithmGroup">The name of the algorithm group to initialize.</param>
284       <exception cref="T:System.ArgumentNullException">The <paramref name="algorithmGroup" /> parameter is <see langword="null" />.</exception>
285       <exception cref="T:System.ArgumentException">The <paramref name="algorithmGroup" /> parameter length is 0 (zero).</exception>
286     </member>
287     <member name="M:System.Security.Cryptography.CngAlgorithmGroup.Equals(System.Object)">
288       <summary>Compares the specified object to the current <see cref="T:System.Security.Cryptography.CngAlgorithmGroup" /> object.</summary>
289       <param name="obj">An object to be compared to the current <see cref="T:System.Security.Cryptography.CngAlgorithmGroup" /> object.</param>
290       <returns>
291         <see langword="true" /> if the <paramref name="obj" /> parameter is a <see cref="T:System.Security.Cryptography.CngAlgorithmGroup" /> that specifies the same algorithm group as the current object; otherwise, <see langword="false" />.</returns>
292     </member>
293     <member name="M:System.Security.Cryptography.CngAlgorithmGroup.Equals(System.Security.Cryptography.CngAlgorithmGroup)">
294       <summary>Compares the specified <see cref="T:System.Security.Cryptography.CngAlgorithmGroup" /> object to the current <see cref="T:System.Security.Cryptography.CngAlgorithmGroup" /> object.</summary>
295       <param name="other">An object to be compared to the current <see cref="T:System.Security.Cryptography.CngAlgorithmGroup" /> object.</param>
296       <returns>
297         <see langword="true" /> if the <paramref name="other" /> parameter specifies the same algorithm group as the current object; otherwise, <see langword="false" />.</returns>
298     </member>
299     <member name="M:System.Security.Cryptography.CngAlgorithmGroup.GetHashCode">
300       <summary>Generates a hash value for the algorithm group name that is embedded in the current <see cref="T:System.Security.Cryptography.CngAlgorithmGroup" /> object.</summary>
301       <returns>The hash value of the embedded algorithm group name.</returns>
302     </member>
303     <member name="M:System.Security.Cryptography.CngAlgorithmGroup.op_Equality(System.Security.Cryptography.CngAlgorithmGroup,System.Security.Cryptography.CngAlgorithmGroup)">
304       <summary>Determines whether two <see cref="T:System.Security.Cryptography.CngAlgorithmGroup" /> objects specify the same algorithm group.</summary>
305       <param name="left">An object that specifies an algorithm group.</param>
306       <param name="right">A second object, to be compared to the object that is identified by the <paramref name="left" /> parameter.</param>
307       <returns>
308         <see langword="true" /> if the two objects specify the same algorithm group; otherwise, <see langword="false" />.</returns>
309     </member>
310     <member name="M:System.Security.Cryptography.CngAlgorithmGroup.op_Inequality(System.Security.Cryptography.CngAlgorithmGroup,System.Security.Cryptography.CngAlgorithmGroup)">
311       <summary>Determines whether two <see cref="T:System.Security.Cryptography.CngAlgorithmGroup" /> objects do not specify the same algorithm group.</summary>
312       <param name="left">An object that specifies an algorithm group.</param>
313       <param name="right">A second object, to be compared to the object that is identified by the <paramref name="left" /> parameter.</param>
314       <returns>
315         <see langword="true" /> if the two objects do not specify the same algorithm group; otherwise, <see langword="false" />.</returns>
316     </member>
317     <member name="M:System.Security.Cryptography.CngAlgorithmGroup.ToString">
318       <summary>Gets the name of the algorithm group that the current <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object specifies.</summary>
319       <returns>The embedded algorithm group name.</returns>
320     </member>
321     <member name="P:System.Security.Cryptography.CngAlgorithmGroup.AlgorithmGroup">
322       <summary>Gets the name of the algorithm group that the current <see cref="T:System.Security.Cryptography.CngAlgorithm" /> object specifies.</summary>
323       <returns>The embedded algorithm group name.</returns>
324     </member>
325     <member name="P:System.Security.Cryptography.CngAlgorithmGroup.DiffieHellman">
326       <summary>Gets a <see cref="T:System.Security.Cryptography.CngAlgorithmGroup" /> object that specifies the Diffie-Hellman family of algorithms.</summary>
327       <returns>An object that specifies the Diffie-Hellman family of algorithms.</returns>
328     </member>
329     <member name="P:System.Security.Cryptography.CngAlgorithmGroup.Dsa">
330       <summary>Gets a <see cref="T:System.Security.Cryptography.CngAlgorithmGroup" /> object that specifies the Digital Signature Algorithm (DSA) family of algorithms.</summary>
331       <returns>An object that specifies the DSA family of algorithms.</returns>
332     </member>
333     <member name="P:System.Security.Cryptography.CngAlgorithmGroup.ECDiffieHellman">
334       <summary>Gets a <see cref="T:System.Security.Cryptography.CngAlgorithmGroup" /> object that specifies the Elliptic Curve Diffie-Hellman (ECDH) family of algorithms.</summary>
335       <returns>An object that specifies the ECDH family of algorithms.</returns>
336     </member>
337     <member name="P:System.Security.Cryptography.CngAlgorithmGroup.ECDsa">
338       <summary>Gets a <see cref="T:System.Security.Cryptography.CngAlgorithmGroup" /> object that specifies the Elliptic Curve Digital Signature Algorithm (ECDSA) family of algorithms.</summary>
339       <returns>An object that specifies the ECDSA family of algorithms.</returns>
340     </member>
341     <member name="P:System.Security.Cryptography.CngAlgorithmGroup.Rsa">
342       <summary>Gets a <see cref="T:System.Security.Cryptography.CngAlgorithmGroup" /> object that specifies the Rivest-Shamir-Adleman (RSA) family of algorithms.</summary>
343       <returns>An object that specifies the RSA family of algorithms.</returns>
344     </member>
345     <member name="T:System.Security.Cryptography.CngExportPolicies">
346       <summary>Specifies the key export policies for a key.</summary>
347     </member>
348     <member name="F:System.Security.Cryptography.CngExportPolicies.AllowArchiving">
349       <summary>The private key can be exported one time for archiving purposes.</summary>
350     </member>
351     <member name="F:System.Security.Cryptography.CngExportPolicies.AllowExport">
352       <summary>The private key can be exported multiple times.</summary>
353     </member>
354     <member name="F:System.Security.Cryptography.CngExportPolicies.AllowPlaintextArchiving">
355       <summary>The private key can be exported one time as plaintext.</summary>
356     </member>
357     <member name="F:System.Security.Cryptography.CngExportPolicies.AllowPlaintextExport">
358       <summary>The private key can be exported multiple times as plaintext.</summary>
359     </member>
360     <member name="F:System.Security.Cryptography.CngExportPolicies.None">
361       <summary>No export policies are established. Key export is allowed without restriction.</summary>
362     </member>
363     <member name="T:System.Security.Cryptography.CngKey">
364       <summary>Defines the core functionality for keys that are used with Cryptography Next Generation (CNG) objects.</summary>
365     </member>
366     <member name="M:System.Security.Cryptography.CngKey.Create(System.Security.Cryptography.CngAlgorithm)">
367       <summary>Creates a <see cref="T:System.Security.Cryptography.CngKey" /> object that can be used with the specified algorithm.</summary>
368       <param name="algorithm">The algorithm that the key will be used with.</param>
369       <exception cref="T:System.ArgumentNullException">
370         <paramref name="algorithm" /> is <see langword="null" />.</exception>
371       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
372       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
373       <returns>An ephemeral key.</returns>
374     </member>
375     <member name="M:System.Security.Cryptography.CngKey.Create(System.Security.Cryptography.CngAlgorithm,System.String)">
376       <summary>Creates a named <see cref="T:System.Security.Cryptography.CngKey" /> object that provides the specified algorithm.</summary>
377       <param name="algorithm">The algorithm that the key will be used with.</param>
378       <param name="keyName">The key name. If a name is not provided, the key will not be persisted.</param>
379       <exception cref="T:System.ArgumentNullException">
380         <paramref name="algorithm" /> is <see langword="null" />.</exception>
381       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
382       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
383       <returns>A persisted or ephemeral key that provides the specified algorithm.</returns>
384     </member>
385     <member name="M:System.Security.Cryptography.CngKey.Create(System.Security.Cryptography.CngAlgorithm,System.String,System.Security.Cryptography.CngKeyCreationParameters)">
386       <summary>Creates a named <see cref="T:System.Security.Cryptography.CngKey" /> object that provides the specified algorithm, using the supplied key creation parameters.</summary>
387       <param name="algorithm">The algorithm that the key will be used with.</param>
388       <param name="keyName">The key name. If a name is not provided, the key will not be persisted.</param>
389       <param name="creationParameters">An object that specifies advanced parameters for the method, including the <see cref="T:System.Security.Cryptography.CngProvider" />.</param>
390       <exception cref="T:System.ArgumentNullException">
391         <paramref name="algorithm" /> is <see langword="null" />.</exception>
392       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
393       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
394       <returns>A persisted or ephemeral key that provides the specified algorithm.</returns>
395     </member>
396     <member name="M:System.Security.Cryptography.CngKey.Delete">
397       <summary>Removes the key that is associated with the object.</summary>
398       <exception cref="T:System.ObjectDisposedException">An attempt was made to access a deleted key.</exception>
399       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
400     </member>
401     <member name="M:System.Security.Cryptography.CngKey.Dispose">
402       <summary>Releases all resources used by the current instance of the <see cref="T:System.Security.Cryptography.CngKey" /> class.</summary>
403     </member>
404     <member name="M:System.Security.Cryptography.CngKey.Exists(System.String)">
405       <summary>Checks to see whether a named key exists in the default key storage provider (KSP).</summary>
406       <param name="keyName">The key name.</param>
407       <exception cref="T:System.ArgumentNullException">
408         <paramref name="keyName" /> is <see langword="null" />.</exception>
409       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
410       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
411       <returns>
412         <see langword="true" /> if the named key exists in the default KSP; otherwise, <see langword="false" />.</returns>
413     </member>
414     <member name="M:System.Security.Cryptography.CngKey.Exists(System.String,System.Security.Cryptography.CngProvider)">
415       <summary>Checks to see whether a named key exists in the specified key storage provider (KSP).</summary>
416       <param name="keyName">The key name.</param>
417       <param name="provider">The KSP to check for the key.</param>
418       <exception cref="T:System.ArgumentNullException">
419         <paramref name="keyName" /> or <paramref name="provider" /> is <see langword="null" />.</exception>
420       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
421       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
422       <returns>
423         <see langword="true" /> if the named key exists in the specified provider; otherwise, <see langword="false" />.</returns>
424     </member>
425     <member name="M:System.Security.Cryptography.CngKey.Exists(System.String,System.Security.Cryptography.CngProvider,System.Security.Cryptography.CngKeyOpenOptions)">
426       <summary>Checks to see whether a named key exists in the specified key storage provider (KSP), according to the specified options.</summary>
427       <param name="keyName">The key name.</param>
428       <param name="provider">The KSP to search for the key.</param>
429       <param name="options">A bitwise combination of the enumeration values that specify options for opening a key.</param>
430       <exception cref="T:System.ArgumentNullException">
431         <paramref name="keyName" /> or <paramref name="provider" /> is <see langword="null" />.</exception>
432       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
433       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
434       <returns>
435         <see langword="true" /> if the named key exists in the specified provider; otherwise, <see langword="false" />.</returns>
436     </member>
437     <member name="M:System.Security.Cryptography.CngKey.Export(System.Security.Cryptography.CngKeyBlobFormat)">
438       <summary>Exports the key material into a BLOB, in the specified format.</summary>
439       <param name="format">An object that specifies the format of the key BLOB.</param>
440       <exception cref="T:System.ArgumentNullException">
441         <paramref name="format" /> is <see langword="null" />.</exception>
442       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors. Typically, the <see cref="P:System.Security.Cryptography.CngKey.ExportPolicy" /> does not allow the key to be exported.</exception>
443       <returns>A BLOB that contains the key material in the specified format.</returns>
444     </member>
445     <member name="M:System.Security.Cryptography.CngKey.GetProperty(System.String,System.Security.Cryptography.CngPropertyOptions)">
446       <summary>Gets a property, given a name and a set of property options.</summary>
447       <param name="name">The name of the desired property.</param>
448       <param name="options">A bitwise combination of the enumeration values that specify options for the named property.</param>
449       <exception cref="T:System.ArgumentNullException">
450         <paramref name="name" /> is <see langword="null" />.</exception>
451       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
452       <returns>An object that contains the raw value of the specified property.</returns>
453     </member>
454     <member name="M:System.Security.Cryptography.CngKey.HasProperty(System.String,System.Security.Cryptography.CngPropertyOptions)">
455       <summary>Checks to see whether the specified property exists on the key.</summary>
456       <param name="name">The property name to check.</param>
457       <param name="options">A bitwise combination of the enumeration values that specify options for the named property.</param>
458       <exception cref="T:System.ArgumentNullException">
459         <paramref name="name" /> is <see langword="null" />.</exception>
460       <returns>
461         <see langword="true" /> if the specified property is found; otherwise, <see langword="false" />.</returns>
462     </member>
463     <member name="M:System.Security.Cryptography.CngKey.Import(System.Byte[],System.Security.Cryptography.CngKeyBlobFormat)">
464       <summary>Creates a new key by importing the specified key material into the default key storage provider (KSP) and using the specified format.</summary>
465       <param name="keyBlob">An array that contains the key information.</param>
466       <param name="format">An object that specifies the format of the <paramref name="keyBlob" /> array.</param>
467       <exception cref="T:System.ArgumentNullException">
468         <paramref name="keyBlob" /> or <paramref name="format" /> is <see langword="null" />.</exception>
469       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
470       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
471       <returns>A new key.</returns>
472     </member>
473     <member name="M:System.Security.Cryptography.CngKey.Import(System.Byte[],System.Security.Cryptography.CngKeyBlobFormat,System.Security.Cryptography.CngProvider)">
474       <summary>Creates a new key by importing the specified key material into the specified key storage provider (KSP), using the specified format.</summary>
475       <param name="keyBlob">An array that contains the key information.</param>
476       <param name="format">An object that specifies the format of the <paramref name="keyBlob" /> array.</param>
477       <param name="provider">The KSP.</param>
478       <exception cref="T:System.ArgumentNullException">
479         <paramref name="keyBlob" />, <paramref name="format" />, or <paramref name="provider" /> is <see langword="null" />.</exception>
480       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
481       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
482       <returns>A new key.</returns>
483     </member>
484     <member name="M:System.Security.Cryptography.CngKey.Open(Microsoft.Win32.SafeHandles.SafeNCryptKeyHandle,System.Security.Cryptography.CngKeyHandleOpenOptions)">
485       <summary>Creates an instance of an <see cref="T:System.Security.Cryptography.CngKey" /> object by using a handle to an existing key.</summary>
486       <param name="keyHandle">A handle to an existing key.</param>
487       <param name="keyHandleOpenOptions">One of the enumeration values that indicates whether <paramref name="keyHandle" /> represents an ephemeral key or a named key.</param>
488       <exception cref="T:System.ArgumentNullException">
489         <paramref name="keyHandle" /> is <see langword="null" />.</exception>
490       <exception cref="T:System.ArgumentException">
491         <paramref name="keyHandle" /> is invalid or malformed, or it is already closed. This exception is also thrown if the key is an ephemeral key that is created by the common language runtime (CLR), but the <see cref="F:System.Security.Cryptography.CngKeyHandleOpenOptions.EphemeralKey" /> value is not specified.</exception>
492       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
493       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
494       <returns>An existing key.</returns>
495     </member>
496     <member name="M:System.Security.Cryptography.CngKey.Open(System.String)">
497       <summary>Creates an instance of an <see cref="T:System.Security.Cryptography.CngKey" /> object that represents an existing named key.</summary>
498       <param name="keyName">The name of the key.</param>
499       <exception cref="T:System.ArgumentNullException">
500         <paramref name="keyName" /> is <see langword="null" />.</exception>
501       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
502       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
503       <returns>An existing key.</returns>
504     </member>
505     <member name="M:System.Security.Cryptography.CngKey.Open(System.String,System.Security.Cryptography.CngProvider)">
506       <summary>Creates an instance of an <see cref="T:System.Security.Cryptography.CngKey" /> object that represents an existing named key, using the specified key storage provider (KSP).</summary>
507       <param name="keyName">The name of the key.</param>
508       <param name="provider">The KSP that contains the key.</param>
509       <exception cref="T:System.ArgumentNullException">
510         <paramref name="keyName" /> or <paramref name="provider" /> is <see langword="null" />.</exception>
511       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
512       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
513       <returns>An existing key.</returns>
514     </member>
515     <member name="M:System.Security.Cryptography.CngKey.Open(System.String,System.Security.Cryptography.CngProvider,System.Security.Cryptography.CngKeyOpenOptions)">
516       <summary>Creates an instance of an <see cref="T:System.Security.Cryptography.CngKey" /> object that represents an existing named key, using the specified key storage provider (KSP) and key open options.</summary>
517       <param name="keyName">The name of the key.</param>
518       <param name="provider">The KSP that contains the key.</param>
519       <param name="openOptions">A bitwise combination of the enumeration values that specify options for opening the key, such as where the key is opened from (machine or user storage) and whether to suppress UI prompting.</param>
520       <exception cref="T:System.ArgumentNullException">
521         <paramref name="keyName" /> or <paramref name="provider" /> is <see langword="null" />.</exception>
522       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
523       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
524       <returns>An existing key.</returns>
525     </member>
526     <member name="M:System.Security.Cryptography.CngKey.SetProperty(System.Security.Cryptography.CngProperty)">
527       <summary>Sets a named property on the key.</summary>
528       <param name="property">The key property to set.</param>
529     </member>
530     <member name="P:System.Security.Cryptography.CngKey.Algorithm">
531       <summary>Gets the algorithm that is used by the key.</summary>
532       <returns>An object that specifies the name of an encryption algorithm.</returns>
533     </member>
534     <member name="P:System.Security.Cryptography.CngKey.AlgorithmGroup">
535       <summary>Gets the algorithm group that is used by the key.</summary>
536       <returns>An object that specifies the name of an encryption algorithm group.</returns>
537     </member>
538     <member name="P:System.Security.Cryptography.CngKey.ExportPolicy">
539       <summary>Gets the export policy that is used by the key.</summary>
540       <returns>An object that specifies the export policy for the key.</returns>
541     </member>
542     <member name="P:System.Security.Cryptography.CngKey.Handle">
543       <summary>Gets a safe handle that represents a native key (NCRYPT_KEY_HANDLE).</summary>
544       <returns>A safe handle that represents the key.</returns>
545     </member>
546     <member name="P:System.Security.Cryptography.CngKey.IsEphemeral">
547       <summary>Gets the persistence state of the key.</summary>
548       <returns>
549         <see langword="true" /> if the key is ephemeral; otherwise, <see langword="false" />.</returns>
550     </member>
551     <member name="P:System.Security.Cryptography.CngKey.IsMachineKey">
552       <summary>Gets the scope (machine or user) of the key.</summary>
553       <returns>
554         <see langword="true" /> if the key is available on a machine-wide basis; <see langword="false" /> if the key is only for the current user.</returns>
555     </member>
556     <member name="P:System.Security.Cryptography.CngKey.KeyName">
557       <summary>Gets the name of the key.</summary>
558       <returns>The name of the key. If the key is ephemeral, the value is <see langword="null" />.</returns>
559     </member>
560     <member name="P:System.Security.Cryptography.CngKey.KeySize">
561       <summary>Gets the key size in bits.</summary>
562       <returns>The key size in bits.</returns>
563     </member>
564     <member name="P:System.Security.Cryptography.CngKey.KeyUsage">
565       <summary>Gets the cryptographic operations specified by the key.</summary>
566       <returns>A bitwise combination of the enumeration values that specify the usages allowed for the key.</returns>
567     </member>
568     <member name="P:System.Security.Cryptography.CngKey.ParentWindowHandle">
569       <summary>Gets or sets the window handle (HWND) that should be used for user interface (UI) prompts caused by accessing the key.</summary>
570       <returns>The parent window handle for the key.</returns>
571     </member>
572     <member name="P:System.Security.Cryptography.CngKey.Provider">
573       <summary>Gets the key storage provider (KSP) that manages the key.</summary>
574       <returns>The KSP that manages the key.</returns>
575     </member>
576     <member name="P:System.Security.Cryptography.CngKey.ProviderHandle">
577       <summary>Gets a native handle (an NCRYPT_PROV_HANDLE) to the key storage provider (KSP).</summary>
578       <returns>A handle to the KSP.</returns>
579     </member>
580     <member name="P:System.Security.Cryptography.CngKey.UIPolicy">
581       <summary>Gets parameters that control the user interface (UI) for accessing the key.</summary>
582       <returns>An object that contains configuration parameters for displaying the UI.</returns>
583     </member>
584     <member name="P:System.Security.Cryptography.CngKey.UniqueName">
585       <summary>Gets the unique name for the key.</summary>
586       <returns>An alternate name for the key. If the key is ephemeral, the value is <see langword="null" />.</returns>
587     </member>
588     <member name="T:System.Security.Cryptography.CngKeyBlobFormat">
589       <summary>Specifies a key BLOB format for use with Microsoft Cryptography Next Generation (CNG) objects.</summary>
590     </member>
591     <member name="M:System.Security.Cryptography.CngKeyBlobFormat.#ctor(System.String)">
592       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> class by using the specified format.</summary>
593       <param name="format">The key BLOB format to initialize.</param>
594       <exception cref="T:System.ArgumentNullException">The <paramref name="format" /> parameter is <see langword="null" />.</exception>
595       <exception cref="T:System.ArgumentException">The <paramref name="format" /> parameter length is 0 (zero).</exception>
596     </member>
597     <member name="M:System.Security.Cryptography.CngKeyBlobFormat.Equals(System.Object)">
598       <summary>Compares the specified object to the current <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> object.</summary>
599       <param name="obj">An object to be compared to the current <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> object.</param>
600       <returns>
601         <see langword="true" /> if the <paramref name="obj" /> parameter is a <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> object that specifies the same key BLOB format as the current object; otherwise, <see langword="false" />.</returns>
602     </member>
603     <member name="M:System.Security.Cryptography.CngKeyBlobFormat.Equals(System.Security.Cryptography.CngKeyBlobFormat)">
604       <summary>Compares the specified <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> object to the current <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> object.</summary>
605       <param name="other">An object to be compared to the current <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> object.</param>
606       <returns>
607         <see langword="true" /> if the <paramref name="other" /> parameter specifies the same key BLOB format as the current object; otherwise, <see langword="false" />.</returns>
608     </member>
609     <member name="M:System.Security.Cryptography.CngKeyBlobFormat.GetHashCode">
610       <summary>Generates a hash value for the embedded key BLOB format in the current <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> object.</summary>
611       <returns>The hash value of the embedded key BLOB format.</returns>
612     </member>
613     <member name="M:System.Security.Cryptography.CngKeyBlobFormat.op_Equality(System.Security.Cryptography.CngKeyBlobFormat,System.Security.Cryptography.CngKeyBlobFormat)">
614       <summary>Determines whether two <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> objects specify the same key BLOB format.</summary>
615       <param name="left">An object that specifies a key BLOB format.</param>
616       <param name="right">A second object, to be compared to the object identified by the <paramref name="left" /> parameter.</param>
617       <returns>
618         <see langword="true" /> if the two objects specify the same key BLOB format; otherwise, <see langword="false" />.</returns>
619     </member>
620     <member name="M:System.Security.Cryptography.CngKeyBlobFormat.op_Inequality(System.Security.Cryptography.CngKeyBlobFormat,System.Security.Cryptography.CngKeyBlobFormat)">
621       <summary>Determines whether two <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> objects do not specify the same key BLOB format.</summary>
622       <param name="left">An object that specifies a key BLOB format.</param>
623       <param name="right">A second object, to be compared to the object identified by the <paramref name="left" /> parameter.</param>
624       <returns>
625         <see langword="true" /> if the two objects do not specify the same key BLOB format; otherwise, <see langword="false" />.</returns>
626     </member>
627     <member name="M:System.Security.Cryptography.CngKeyBlobFormat.ToString">
628       <summary>Gets the name of the key BLOB format that the current <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> object specifies.</summary>
629       <returns>The embedded key BLOB format name.</returns>
630     </member>
631     <member name="P:System.Security.Cryptography.CngKeyBlobFormat.EccFullPrivateBlob">
632       <summary>Gets a <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> object that specifies a private key BLOB for an elliptic curve cryptography (ECC) key which contains explicit curve parameters.</summary>
633       <returns>An object describing a private key BLOB.</returns>
634     </member>
635     <member name="P:System.Security.Cryptography.CngKeyBlobFormat.EccFullPublicBlob">
636       <summary>Gets a <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> object that specifies a public key BLOB for an elliptic curve cryptography (ECC) key which contains explicit curve parameters.</summary>
637       <returns>An object describing a public key BLOB.</returns>
638     </member>
639     <member name="P:System.Security.Cryptography.CngKeyBlobFormat.EccPrivateBlob">
640       <summary>Gets a <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> object that specifies a private key BLOB for an elliptic curve cryptography (ECC) key.</summary>
641       <returns>An object that specifies an ECC private key BLOB.</returns>
642     </member>
643     <member name="P:System.Security.Cryptography.CngKeyBlobFormat.EccPublicBlob">
644       <summary>Gets a <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> object that specifies a public key BLOB for an elliptic curve cryptography (ECC) key.</summary>
645       <returns>An object that specifies an ECC public key BLOB.</returns>
646     </member>
647     <member name="P:System.Security.Cryptography.CngKeyBlobFormat.Format">
648       <summary>Gets the name of the key BLOB format that the current <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> object specifies.</summary>
649       <returns>The embedded key BLOB format name.</returns>
650     </member>
651     <member name="P:System.Security.Cryptography.CngKeyBlobFormat.GenericPrivateBlob">
652       <summary>Gets a <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> object that specifies a generic private key BLOB.</summary>
653       <returns>An object that specifies a generic private key BLOB.</returns>
654     </member>
655     <member name="P:System.Security.Cryptography.CngKeyBlobFormat.GenericPublicBlob">
656       <summary>Gets a <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> object that specifies a generic public key BLOB.</summary>
657       <returns>An object that specifies a generic public key BLOB.</returns>
658     </member>
659     <member name="P:System.Security.Cryptography.CngKeyBlobFormat.OpaqueTransportBlob">
660       <summary>Gets a <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> object that specifies an opaque transport key BLOB.</summary>
661       <returns>An object that specifies an opaque transport key BLOB.</returns>
662     </member>
663     <member name="P:System.Security.Cryptography.CngKeyBlobFormat.Pkcs8PrivateBlob">
664       <summary>Gets a <see cref="T:System.Security.Cryptography.CngKeyBlobFormat" /> object that specifies a Private Key Information Syntax Standard (PKCS #8) key BLOB.</summary>
665       <returns>An object that specifies a PKCS #8 private key BLOB.</returns>
666     </member>
667     <member name="T:System.Security.Cryptography.CngKeyCreationOptions">
668       <summary>Specifies options used for key creation.</summary>
669     </member>
670     <member name="F:System.Security.Cryptography.CngKeyCreationOptions.MachineKey">
671       <summary>A machine-wide key is created.</summary>
672     </member>
673     <member name="F:System.Security.Cryptography.CngKeyCreationOptions.None">
674       <summary>No key creation options are used.</summary>
675     </member>
676     <member name="F:System.Security.Cryptography.CngKeyCreationOptions.OverwriteExistingKey">
677       <summary>The existing key is overwritten during key creation.</summary>
678     </member>
679     <member name="T:System.Security.Cryptography.CngKeyCreationParameters">
680       <summary>Contains advanced properties for key creation.</summary>
681     </member>
682     <member name="M:System.Security.Cryptography.CngKeyCreationParameters.#ctor">
683       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CngKeyCreationParameters" /> class.</summary>
684     </member>
685     <member name="P:System.Security.Cryptography.CngKeyCreationParameters.ExportPolicy">
686       <summary>Gets or sets the key export policy.</summary>
687       <returns>An object that specifies a key export policy. The default value is <see langword="null" />, which indicates that the key storage provider's default export policy is set.</returns>
688     </member>
689     <member name="P:System.Security.Cryptography.CngKeyCreationParameters.KeyCreationOptions">
690       <summary>Gets or sets the key creation options.</summary>
691       <returns>An object that specifies options for creating keys. The default value is <see langword="null" />, which indicates that the key storage provider's default key creation options are set.</returns>
692     </member>
693     <member name="P:System.Security.Cryptography.CngKeyCreationParameters.KeyUsage">
694       <summary>Gets or sets the cryptographic operations that apply to the current key.</summary>
695       <returns>A bitwise combination of one or more enumeration values that specify key usage. The default value is <see langword="null" />, which indicates that the key storage provider's default key usage is set.</returns>
696     </member>
697     <member name="P:System.Security.Cryptography.CngKeyCreationParameters.Parameters">
698       <summary>Enables a <see cref="T:System.Security.Cryptography.CngKey" /> object to be created with additional properties that are set before the key is finalized.</summary>
699       <returns>A collection object that contains any additional parameters that you must set on a <see cref="T:System.Security.Cryptography.CngKey" /> object during key creation.</returns>
700     </member>
701     <member name="P:System.Security.Cryptography.CngKeyCreationParameters.ParentWindowHandle">
702       <summary>Gets or sets the window handle that should be used as the parent window for dialog boxes that are created by Cryptography Next Generation (CNG) classes.</summary>
703       <returns>The HWND of the parent window that is used for CNG dialog boxes.</returns>
704     </member>
705     <member name="P:System.Security.Cryptography.CngKeyCreationParameters.Provider">
706       <summary>Gets or sets the key storage provider (KSP) to create a key in.</summary>
707       <exception cref="T:System.ArgumentNullException">The <see cref="P:System.Security.Cryptography.CngKeyCreationParameters.Provider" /> property is set to a <see langword="null" /> value.</exception>
708       <returns>An object that specifies the KSP that a new key will be created in.</returns>
709     </member>
710     <member name="P:System.Security.Cryptography.CngKeyCreationParameters.UIPolicy">
711       <summary>Gets or sets information about the user interface to display when a key is created or accessed.</summary>
712       <returns>An object that contains details about the user interface shown by Cryptography Next Generation (CNG) classes when a key is created or accessed. A <see langword="null" /> value indicates that the key storage provider's default user interface policy is set.</returns>
713     </member>
714     <member name="T:System.Security.Cryptography.CngKeyHandleOpenOptions">
715       <summary>Specifies options for opening key handles.</summary>
716     </member>
717     <member name="F:System.Security.Cryptography.CngKeyHandleOpenOptions.EphemeralKey">
718       <summary>The key handle being opened specifies an ephemeral key.</summary>
719     </member>
720     <member name="F:System.Security.Cryptography.CngKeyHandleOpenOptions.None">
721       <summary>The key handle being opened does not specify an ephemeral key.</summary>
722     </member>
723     <member name="T:System.Security.Cryptography.CngKeyOpenOptions">
724       <summary>Specifies options for opening a key.</summary>
725     </member>
726     <member name="F:System.Security.Cryptography.CngKeyOpenOptions.MachineKey">
727       <summary>A machine-wide key is opened.</summary>
728     </member>
729     <member name="F:System.Security.Cryptography.CngKeyOpenOptions.None">
730       <summary>No key open options are specified.</summary>
731     </member>
732     <member name="F:System.Security.Cryptography.CngKeyOpenOptions.Silent">
733       <summary>UI prompting is suppressed.</summary>
734     </member>
735     <member name="F:System.Security.Cryptography.CngKeyOpenOptions.UserKey">
736       <summary>If the <see cref="F:System.Security.Cryptography.CngKeyOpenOptions.MachineKey" /> value is not specified, a user key is opened instead.</summary>
737     </member>
738     <member name="T:System.Security.Cryptography.CngKeyUsages">
739       <summary>Specifies the cryptographic operations that a Cryptography Next Generation (CNG) key may be used with.</summary>
740     </member>
741     <member name="F:System.Security.Cryptography.CngKeyUsages.AllUsages">
742       <summary>The key can be used for all purposes.</summary>
743     </member>
744     <member name="F:System.Security.Cryptography.CngKeyUsages.Decryption">
745       <summary>The key can be used for encryption and decryption.</summary>
746     </member>
747     <member name="F:System.Security.Cryptography.CngKeyUsages.KeyAgreement">
748       <summary>The key can be used for secret agreement generation and key exchange.</summary>
749     </member>
750     <member name="F:System.Security.Cryptography.CngKeyUsages.None">
751       <summary>No usage values are assigned to the key.</summary>
752     </member>
753     <member name="F:System.Security.Cryptography.CngKeyUsages.Signing">
754       <summary>The key can be used for signing and verification.</summary>
755     </member>
756     <member name="T:System.Security.Cryptography.CngProperty">
757       <summary>Encapsulates a property of a Cryptography Next Generation (CNG) key or provider.</summary>
758     </member>
759     <member name="M:System.Security.Cryptography.CngProperty.#ctor(System.String,System.Byte[],System.Security.Cryptography.CngPropertyOptions)">
760       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CngProperty" /> class.</summary>
761       <param name="name">The property name to initialize.</param>
762       <param name="value">The property value to initialize.</param>
763       <param name="options">A bitwise combination of the enumeration values that specify how the property is stored.</param>
764       <exception cref="T:System.ArgumentNullException">
765         <paramref name="name" /> is <see langword="null" />.</exception>
766     </member>
767     <member name="M:System.Security.Cryptography.CngProperty.Equals(System.Object)">
768       <summary>Compares the specified object to the current <see cref="T:System.Security.Cryptography.CngProperty" /> object.</summary>
769       <param name="obj">An object to be compared to the current <see cref="T:System.Security.Cryptography.CngProperty" /> object.</param>
770       <returns>
771         <see langword="true" /> if the <paramref name="obj" /> parameter is a <see cref="T:System.Security.Cryptography.CngProperty" /> object that specifies the same property as the current object; otherwise, <see langword="false" />.</returns>
772     </member>
773     <member name="M:System.Security.Cryptography.CngProperty.Equals(System.Security.Cryptography.CngProperty)">
774       <summary>Compares the specified <see cref="T:System.Security.Cryptography.CngProperty" /> object to the current <see cref="T:System.Security.Cryptography.CngProperty" /> object.</summary>
775       <param name="other">An object to be compared to the current <see cref="T:System.Security.Cryptography.CngProperty" /> object.</param>
776       <returns>
777         <see langword="true" /> if the <paramref name="other" /> parameter represents the same property as the current object; otherwise, <see langword="false" />.</returns>
778     </member>
779     <member name="M:System.Security.Cryptography.CngProperty.GetHashCode">
780       <summary>Generates a hash value for the current <see cref="T:System.Security.Cryptography.CngProperty" /> object.</summary>
781       <returns>The hash value of the current <see cref="T:System.Security.Cryptography.CngProperty" /> object.</returns>
782     </member>
783     <member name="M:System.Security.Cryptography.CngProperty.GetValue">
784       <summary>Gets the property value that the current <see cref="T:System.Security.Cryptography.CngProperty" /> object specifies.</summary>
785       <returns>An array that represents the value stored in the property.</returns>
786     </member>
787     <member name="M:System.Security.Cryptography.CngProperty.op_Equality(System.Security.Cryptography.CngProperty,System.Security.Cryptography.CngProperty)">
788       <summary>Determines whether two <see cref="T:System.Security.Cryptography.CngProperty" /> objects specify the same property name, value, and options.</summary>
789       <param name="left">An object that specifies a property of a Cryptography Next Generation (CNG) key or provider.</param>
790       <param name="right">A second object, to be compared to the object that is identified by the <paramref name="left" /> parameter.</param>
791       <returns>
792         <see langword="true" /> if the two objects specify the same property; otherwise, <see langword="false" />.</returns>
793     </member>
794     <member name="M:System.Security.Cryptography.CngProperty.op_Inequality(System.Security.Cryptography.CngProperty,System.Security.Cryptography.CngProperty)">
795       <summary>Determines whether two <see cref="T:System.Security.Cryptography.CngProperty" /> objects do not specify the same property name, value, and options.</summary>
796       <param name="left">An object that specifies a property of a Cryptography Next Generation (CNG) key or provider.</param>
797       <param name="right">A second object, to be compared to the object that is identified by the <paramref name="left" /> parameter.</param>
798       <returns>
799         <see langword="true" /> if the two objects do not specify the same property; otherwise, <see langword="false" />.</returns>
800     </member>
801     <member name="P:System.Security.Cryptography.CngProperty.Name">
802       <summary>Gets the property name that the current <see cref="T:System.Security.Cryptography.CngProperty" /> object specifies.</summary>
803       <returns>The property name that is set in the current <see cref="T:System.Security.Cryptography.CngProperty" /> object.</returns>
804     </member>
805     <member name="P:System.Security.Cryptography.CngProperty.Options">
806       <summary>Gets the property options that the current <see cref="T:System.Security.Cryptography.CngProperty" /> object specifies.</summary>
807       <returns>An object that specifies the options that are set in the current <see cref="T:System.Security.Cryptography.CngProperty" /> object.</returns>
808     </member>
809     <member name="T:System.Security.Cryptography.CngPropertyCollection">
810       <summary>Provides a strongly typed collection of Cryptography Next Generation (CNG) properties.</summary>
811     </member>
812     <member name="M:System.Security.Cryptography.CngPropertyCollection.#ctor">
813       <summary>Initializes a new <see cref="T:System.Security.Cryptography.CngPropertyCollection" /> object.</summary>
814     </member>
815     <member name="T:System.Security.Cryptography.CngPropertyOptions">
816       <summary>Specifies Cryptography Next Generation (CNG) key property options.</summary>
817     </member>
818     <member name="F:System.Security.Cryptography.CngPropertyOptions.CustomProperty">
819       <summary>The property is not specified by CNG. Use this option to avoid future name conflicts with CNG properties.</summary>
820     </member>
821     <member name="F:System.Security.Cryptography.CngPropertyOptions.None">
822       <summary>The referenced property has no options.</summary>
823     </member>
824     <member name="F:System.Security.Cryptography.CngPropertyOptions.Persist">
825       <summary>The property should be persisted.</summary>
826     </member>
827     <member name="T:System.Security.Cryptography.CngProvider">
828       <summary>Encapsulates the name of a key storage provider (KSP) for use with Cryptography Next Generation (CNG) objects.</summary>
829     </member>
830     <member name="M:System.Security.Cryptography.CngProvider.#ctor(System.String)">
831       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CngProvider" /> class.</summary>
832       <param name="provider">The name of the key storage provider (KSP) to initialize.</param>
833       <exception cref="T:System.ArgumentNullException">The <paramref name="provider" /> parameter is <see langword="null" />.</exception>
834       <exception cref="T:System.ArgumentException">The <paramref name="provider" /> parameter length is 0 (zero).</exception>
835     </member>
836     <member name="M:System.Security.Cryptography.CngProvider.Equals(System.Object)">
837       <summary>Compares the specified object to the current <see cref="T:System.Security.Cryptography.CngProvider" /> object.</summary>
838       <param name="obj">An object to be compared to the current <see cref="T:System.Security.Cryptography.CngProvider" /> object.</param>
839       <returns>
840         <see langword="true" /> if the <paramref name="obj" /> parameter is a <see cref="T:System.Security.Cryptography.CngProvider" /> that specifies the same key storage provider(KSP) as the current object; otherwise, <see langword="false" />.</returns>
841     </member>
842     <member name="M:System.Security.Cryptography.CngProvider.Equals(System.Security.Cryptography.CngProvider)">
843       <summary>Compares the specified <see cref="T:System.Security.Cryptography.CngProvider" /> object to the current <see cref="T:System.Security.Cryptography.CngProvider" /> object.</summary>
844       <param name="other">An object to be compared to the current <see cref="T:System.Security.Cryptography.CngProvider" /> object.</param>
845       <returns>
846         <see langword="true" /> if the <paramref name="other" /> parameter specifies the same key storage provider (KSP) as the current object; otherwise, <see langword="false" />.</returns>
847     </member>
848     <member name="M:System.Security.Cryptography.CngProvider.GetHashCode">
849       <summary>Generates a hash value for the name of the key storage provider (KSP) that is embedded in the current <see cref="T:System.Security.Cryptography.CngProvider" /> object.</summary>
850       <returns>The hash value of the embedded KSP name.</returns>
851     </member>
852     <member name="M:System.Security.Cryptography.CngProvider.op_Equality(System.Security.Cryptography.CngProvider,System.Security.Cryptography.CngProvider)">
853       <summary>Determines whether two <see cref="T:System.Security.Cryptography.CngProvider" /> objects specify the same key storage provider (KSP).</summary>
854       <param name="left">An object that specifies a KSP.</param>
855       <param name="right">A second object, to be compared to the object that is identified by the <paramref name="left" /> parameter.</param>
856       <returns>
857         <see langword="true" /> if the two objects represent the same KSP; otherwise, <see langword="false" />.</returns>
858     </member>
859     <member name="M:System.Security.Cryptography.CngProvider.op_Inequality(System.Security.Cryptography.CngProvider,System.Security.Cryptography.CngProvider)">
860       <summary>Determines whether two <see cref="T:System.Security.Cryptography.CngProvider" /> objects do not represent the same key storage provider (KSP).</summary>
861       <param name="left">An object that specifies a KSP.</param>
862       <param name="right">A second object, to be compared to the object that is identified by the <paramref name="left" /> parameter.</param>
863       <returns>
864         <see langword="true" /> if the two objects do not represent the same KSP; otherwise, <see langword="false" />.</returns>
865     </member>
866     <member name="M:System.Security.Cryptography.CngProvider.ToString">
867       <summary>Gets the name of the key storage provider (KSP) that the current <see cref="T:System.Security.Cryptography.CngProvider" /> object specifies.</summary>
868       <returns>The embedded KSP name.</returns>
869     </member>
870     <member name="P:System.Security.Cryptography.CngProvider.MicrosoftPlatformCryptoProvider">
871       <summary>Gets a <see cref="T:System.Security.Cryptography.CngProvider" /> object that specifies the Microsoft Platform Crypto Storage Provider.</summary>
872       <returns>An object that specifies the Microsoft Platform Crypto Storage Provider.</returns>
873     </member>
874     <member name="P:System.Security.Cryptography.CngProvider.MicrosoftSmartCardKeyStorageProvider">
875       <summary>Gets a <see cref="T:System.Security.Cryptography.CngProvider" /> object that specifies the Microsoft Smart Card Key Storage Provider.</summary>
876       <returns>An object that specifies the Microsoft Smart Card Key Storage Provider.</returns>
877     </member>
878     <member name="P:System.Security.Cryptography.CngProvider.MicrosoftSoftwareKeyStorageProvider">
879       <summary>Gets a <see cref="T:System.Security.Cryptography.CngProvider" /> object that specifies the Microsoft Software Key Storage Provider.</summary>
880       <returns>An object that specifies the Microsoft Software Key Storage Provider.</returns>
881     </member>
882     <member name="P:System.Security.Cryptography.CngProvider.Provider">
883       <summary>Gets the name of the key storage provider (KSP) that the current <see cref="T:System.Security.Cryptography.CngProvider" /> object specifies.</summary>
884       <returns>The embedded KSP name.</returns>
885     </member>
886     <member name="T:System.Security.Cryptography.CngUIPolicy">
887       <summary>Encapsulates optional configuration parameters for the user interface (UI) that Cryptography Next Generation (CNG) displays when you access a protected key.</summary>
888     </member>
889     <member name="M:System.Security.Cryptography.CngUIPolicy.#ctor(System.Security.Cryptography.CngUIProtectionLevels)">
890       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CngUIPolicy" /> class by using the specified protection level.</summary>
891       <param name="protectionLevel">A bitwise combination of the enumeration values that specify the protection level.</param>
892     </member>
893     <member name="M:System.Security.Cryptography.CngUIPolicy.#ctor(System.Security.Cryptography.CngUIProtectionLevels,System.String)">
894       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CngUIPolicy" /> class by using the specified protection level and friendly name.</summary>
895       <param name="protectionLevel">A bitwise combination of the enumeration values that specify the protection level.</param>
896       <param name="friendlyName">A friendly name for the key to be used in the UI prompt. Specify a null string to use the default name.</param>
897     </member>
898     <member name="M:System.Security.Cryptography.CngUIPolicy.#ctor(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String)">
899       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CngUIPolicy" /> class by using the specified protection level, friendly name, and description.</summary>
900       <param name="protectionLevel">A bitwise combination of the enumeration values that specify the protection level.</param>
901       <param name="friendlyName">A friendly name for the key to be used in the UI prompt. Specify a null string to use the default name.</param>
902       <param name="description">The full-text description of the key. Specify a null string to use the default description.</param>
903     </member>
904     <member name="M:System.Security.Cryptography.CngUIPolicy.#ctor(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String)">
905       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CngUIPolicy" /> class by using the specified protection level, friendly name, description string, and use context.</summary>
906       <param name="protectionLevel">A bitwise combination of the enumeration values that specify the protection level.</param>
907       <param name="friendlyName">A friendly name for the key to be used in the UI prompt. Specify a null string to use the default name.</param>
908       <param name="description">The full-text description of the key. Specify a null string to use the default description.</param>
909       <param name="useContext">A description of how the key will be used. Specify a null string to use the default description.</param>
910     </member>
911     <member name="M:System.Security.Cryptography.CngUIPolicy.#ctor(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String,System.String)">
912       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CngUIPolicy" /> class by using the specified protection level, friendly name, description string, use context, and title.</summary>
913       <param name="protectionLevel">A bitwise combination of the enumeration values that specify the protection level.</param>
914       <param name="friendlyName">A friendly name for the key to be used in the UI prompt. Specify a null string to use the default name.</param>
915       <param name="description">The full-text description of the key. Specify a null string to use the default description.</param>
916       <param name="useContext">A description of how the key will be used. Specify a null string to use the default description.</param>
917       <param name="creationTitle">The title for the dialog box that provides the UI prompt. Specify a null string to use the default title.</param>
918     </member>
919     <member name="P:System.Security.Cryptography.CngUIPolicy.CreationTitle">
920       <summary>Gets the title that is displayed by the UI prompt.</summary>
921       <returns>The title of the dialog box that appears when the key is accessed.</returns>
922     </member>
923     <member name="P:System.Security.Cryptography.CngUIPolicy.Description">
924       <summary>Gets the description string that is displayed by the UI prompt.</summary>
925       <returns>The description text for the dialog box that appears when the key is accessed.</returns>
926     </member>
927     <member name="P:System.Security.Cryptography.CngUIPolicy.FriendlyName">
928       <summary>Gets the friendly name that is displayed by the UI prompt.</summary>
929       <returns>The friendly name that is used to describe the key in the dialog box that appears when the key is accessed.</returns>
930     </member>
931     <member name="P:System.Security.Cryptography.CngUIPolicy.ProtectionLevel">
932       <summary>Gets the UI protection level for the key.</summary>
933       <returns>An object that describes the level of UI protection to apply to the key.</returns>
934     </member>
935     <member name="P:System.Security.Cryptography.CngUIPolicy.UseContext">
936       <summary>Gets the description of how the key will be used.</summary>
937       <returns>The description of how the key will be used.</returns>
938     </member>
939     <member name="T:System.Security.Cryptography.CngUIProtectionLevels">
940       <summary>Specifies the protection level for the key in user interface (UI) prompting scenarios.</summary>
941     </member>
942     <member name="F:System.Security.Cryptography.CngUIProtectionLevels.ForceHighProtection">
943       <summary>A UI prompt is displayed every time the key is accessed.</summary>
944     </member>
945     <member name="F:System.Security.Cryptography.CngUIProtectionLevels.None">
946       <summary>No UI prompt is displayed when the key is accessed.</summary>
947     </member>
948     <member name="F:System.Security.Cryptography.CngUIProtectionLevels.ProtectKey">
949       <summary>A UI prompt is displayed the first time the key is accessed in a process.</summary>
950     </member>
951     <member name="T:System.Security.Cryptography.DSACng">
952       <summary>Provides a Cryptography Next Generation (CNG) implementation of the Digital Signature Algorithm (DSA).</summary>
953     </member>
954     <member name="M:System.Security.Cryptography.DSACng.#ctor">
955       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.DSACng" /> class with a random 2,048-bit key pair.</summary>
956     </member>
957     <member name="M:System.Security.Cryptography.DSACng.#ctor(System.Int32)">
958       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.DSACng" /> class with a randomly generated key of the specified size.</summary>
959       <param name="keySize">The size of the key to generate in bits.</param>
960       <exception cref="T:System.Security.Cryptography.CryptographicException">
961         <paramref name="keySize" /> is not valid.</exception>
962     </member>
963     <member name="M:System.Security.Cryptography.DSACng.#ctor(System.Security.Cryptography.CngKey)">
964       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.DSACng" /> class with the specified key.</summary>
965       <param name="key">The key to use for DSA operations.</param>
966       <exception cref="T:System.ArgumentException">
967         <paramref name="key" /> is not a valid DSA key.</exception>
968       <exception cref="T:System.ArgumentNullException">
969         <paramref name="key" /> is <see langword="null" />.</exception>
970     </member>
971     <member name="M:System.Security.Cryptography.DSACng.CreateSignature(System.Byte[])">
972       <summary>Creates the <see cref="T:System.Security.Cryptography.DSA" /> signature for the specified data.</summary>
973       <param name="rgbHash">The hash value to be signed.</param>
974       <exception cref="T:System.ArgumentNullException">
975         <paramref name="rgbHash" /> is <see langword="null" />.</exception>
976       <exception cref="T:System.Security.Cryptography.CryptographicException">This instance represents only a public key.
977
978 -or-
979
980 An error occurred during signature creation.</exception>
981       <exception cref="T:System.PlatformNotSupportedException">
982         <paramref name="rgbHash" /> is shorter in length than the Q value of the DSA key.</exception>
983       <returns>The digital signature for the specified data.</returns>
984     </member>
985     <member name="M:System.Security.Cryptography.DSACng.ExportParameters(System.Boolean)">
986       <summary>Exports the DSA algorithm parameters.</summary>
987       <param name="includePrivateParameters">
988         <see langword="true" /> to include private parameters; otherwise, <see langword="false" />.</param>
989       <exception cref="T:System.Security.Cryptography.CryptographicException">DSA key is not a valid public or private key.</exception>
990       <returns>The DSA algorithm parameters.</returns>
991     </member>
992     <member name="M:System.Security.Cryptography.DSACng.ImportParameters(System.Security.Cryptography.DSAParameters)">
993       <summary>Replaces the existing key that the current instance is working with by creating a new <see cref="T:System.Security.Cryptography.CngKey" /> for the parameters structure.</summary>
994       <param name="parameters">The DSA parameters.</param>
995       <exception cref="T:System.ArgumentException">The specified DSA parameters are not valid.</exception>
996     </member>
997     <member name="M:System.Security.Cryptography.DSACng.VerifySignature(System.Byte[],System.Byte[])">
998       <summary>Verifies if the specified digital signature matches the specified hash.</summary>
999       <param name="rgbHash">The signed hash.</param>
1000       <param name="rgbSignature">The digital signature to be verified.</param>
1001       <exception cref="T:System.ArgumentNullException">The <paramref name="rgbHash" /> or <paramref name="rgbSignature" /> parameters are <see langword="null" />.</exception>
1002       <returns>
1003         <see langword="true" /> if <paramref name="rgbSignature" /> matches the signature computed using the specified hash; otherwise, <see langword="false" />.</returns>
1004     </member>
1005     <member name="P:System.Security.Cryptography.DSACng.Key">
1006       <summary>Gets the key that will be used by the <see cref="T:System.Security.Cryptography.DSACng" /> object for any cryptographic operation that it performs.</summary>
1007       <returns>The key used by the <see cref="T:System.Security.Cryptography.DSACng" /> object to perform cryptographic operations.</returns>
1008     </member>
1009     <member name="P:System.Security.Cryptography.DSACng.KeyExchangeAlgorithm">
1010       <summary>Gets the name of the key exchange algorithm.</summary>
1011       <returns>Always <see langword="null" />.</returns>
1012     </member>
1013     <member name="P:System.Security.Cryptography.DSACng.LegalKeySizes">
1014       <summary>Gets the key sizes, in bits, that are supported by the DSA algorithm.</summary>
1015       <returns>An array that contains the key sizes supported by the algorithm.</returns>
1016     </member>
1017     <member name="P:System.Security.Cryptography.DSACng.SignatureAlgorithm">
1018       <summary>Gets the name of the signature algorithm.</summary>
1019       <returns>The string "DSA".</returns>
1020     </member>
1021     <member name="T:System.Security.Cryptography.ECDiffieHellmanCng">
1022       <summary>Provides a Cryptography Next Generation (CNG) implementation of the Elliptic Curve Diffie-Hellman (ECDH) algorithm. This class is used to perform cryptographic operations.</summary>
1023     </member>
1024     <member name="M:System.Security.Cryptography.ECDiffieHellmanCng.#ctor">
1025       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.ECDiffieHellmanCng" /> class with a random key pair.</summary>
1026     </member>
1027     <member name="M:System.Security.Cryptography.ECDiffieHellmanCng.#ctor(System.Int32)">
1028       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.ECDiffieHellmanCng" /> class with a random key pair, using the specified key size.</summary>
1029       <param name="keySize">The size of the key. Valid key sizes are 256, 384, and 521 bits.</param>
1030       <exception cref="T:System.ArgumentException">
1031         <paramref name="keySize" /> specifies an invalid length.</exception>
1032       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) classes are not supported on this system.</exception>
1033     </member>
1034     <member name="M:System.Security.Cryptography.ECDiffieHellmanCng.#ctor(System.Security.Cryptography.CngKey)">
1035       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.ECDiffieHellmanCng" /> class by using the specified <see cref="T:System.Security.Cryptography.CngKey" /> object.</summary>
1036       <param name="key">The key that will be used as input to the cryptographic operations performed by the current object.</param>
1037       <exception cref="T:System.ArgumentNullException">
1038         <paramref name="key" /> is <see langword="null" />.</exception>
1039       <exception cref="T:System.ArgumentException">
1040         <paramref name="key" /> does not specify an Elliptic Curve Diffie-Hellman (ECDH) algorithm group.</exception>
1041       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) classes are not supported on this system.</exception>
1042     </member>
1043     <member name="M:System.Security.Cryptography.ECDiffieHellmanCng.#ctor(System.Security.Cryptography.ECCurve)">
1044       <summary>Creates a new instance of the <see cref="T:System.Security.Cryptography.ECDiffieHellmanCng" /> class whose public/private key pair is generated over the specified curve.</summary>
1045       <param name="curve">The curve used to generate the public/private key pair.</param>
1046       <exception cref="T:System.Security.Cryptography.CryptographicException">
1047         <paramref name="curve" /> does not validate.</exception>
1048     </member>
1049     <member name="M:System.Security.Cryptography.ECDiffieHellmanCng.DeriveKeyFromHash(System.Security.Cryptography.ECDiffieHellmanPublicKey,System.Security.Cryptography.HashAlgorithmName,System.Byte[],System.Byte[])">
1050       <summary>Performs key derivation using a specified hash algorithm with optional prepended or appended data.</summary>
1051       <param name="otherPartyPublicKey">The other party's public key.</param>
1052       <param name="hashAlgorithm">The hash algorithm to use to derive the key material.</param>
1053       <param name="secretPrepend">A value to prepend to the derived secret before hashing.</param>
1054       <param name="secretAppend">A value to append to the derived secret before hashing.</param>
1055       <exception cref="T:System.NotImplementedException">A derived class must override this method.</exception>
1056       <exception cref="T:System.ArgumentException">The curve used by <paramref name="otherPartyPublicKey" /> has a different size than the curve from this key.
1057
1058 -or-
1059
1060 The <paramref name="hashAlgorithm" /> parameter does not specify a hash.</exception>
1061       <exception cref="T:System.ArgumentNullException">
1062         <paramref name="otherPartyPublicKey" /> is <see langword="null" />.</exception>
1063       <exception cref="T:System.Security.Cryptography.CryptographicException">The curve used by <paramref name="otherPartyPublicKey" /> is different than the curve from this key.
1064
1065 -or-
1066
1067 This instance represents only a public key.</exception>
1068       <returns>The hash of the shared secret after prepending or appending data as requested.</returns>
1069     </member>
1070     <member name="M:System.Security.Cryptography.ECDiffieHellmanCng.DeriveKeyFromHmac(System.Security.Cryptography.ECDiffieHellmanPublicKey,System.Security.Cryptography.HashAlgorithmName,System.Byte[],System.Byte[],System.Byte[])">
1071       <summary>Performs key derivation using a specified HMAC (Hash-based Message Authentication Code) algorithm with optional prepended or appended data.</summary>
1072       <param name="otherPartyPublicKey">The other party's public key.</param>
1073       <param name="hashAlgorithm">The hash algorithm to use to derive the key material.</param>
1074       <param name="hmacKey">The key for the HMAC.</param>
1075       <param name="secretPrepend">A value to prepend to the derived secret before hashing.</param>
1076       <param name="secretAppend">A value to append to the derived secret before hashing.</param>
1077       <exception cref="T:System.ArgumentException">The curve used by <paramref name="otherPartyPublicKey" /> has a different size than the curve from this key.
1078
1079 -or-
1080
1081 The <paramref name="hashAlgorithm" /> parameter does not specify a hash.</exception>
1082       <exception cref="T:System.ArgumentNullException">
1083         <paramref name="otherPartyPublicKey" /> is <see langword="null" />.</exception>
1084       <exception cref="T:System.Security.Cryptography.CryptographicException">The curve used by <paramref name="otherPartyPublicKey" /> is different than the curve from this key.
1085
1086 -or-
1087
1088 This instance represents only a public key.</exception>
1089       <returns>The HMAC of the shared secret after prepending or appending data as requested.</returns>
1090     </member>
1091     <member name="M:System.Security.Cryptography.ECDiffieHellmanCng.DeriveKeyMaterial(System.Security.Cryptography.CngKey)">
1092       <summary>Derives the key material that is generated from the secret agreement between two parties, given a <see cref="T:System.Security.Cryptography.CngKey" /> object that contains the second party's public key.</summary>
1093       <param name="otherPartyPublicKey">An object that contains the public part of the Elliptic Curve Diffie-Hellman (ECDH) key from the other party in the key exchange.</param>
1094       <exception cref="T:System.ArgumentNullException">
1095         <paramref name="otherPartyPublicKey" /> is <see langword="null" />.</exception>
1096       <exception cref="T:System.ArgumentException">
1097         <paramref name="otherPartyPublicKey" /> is invalid. Either its <see cref="P:System.Security.Cryptography.CngKey.AlgorithmGroup" /> property does not specify <see cref="P:System.Security.Cryptography.CngAlgorithmGroup.ECDiffieHellman" /> or its key size does not match the key size of this instance.</exception>
1098       <exception cref="T:System.InvalidOperationException">This object's <see cref="P:System.Security.Cryptography.ECDiffieHellmanCng.KeyDerivationFunction" /> property specifies the <see cref="F:System.Security.Cryptography.ECDiffieHellmanKeyDerivationFunction.Tls" /> key derivation function, but either <see cref="P:System.Security.Cryptography.ECDiffieHellmanCng.Label" /> or <see cref="P:System.Security.Cryptography.ECDiffieHellmanCng.Seed" /> is <see langword="null" />.</exception>
1099       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
1100       <returns>A byte array that contains the key material. This information is generated from the secret agreement that is calculated from the current object's private key and the specified public key.</returns>
1101     </member>
1102     <member name="M:System.Security.Cryptography.ECDiffieHellmanCng.DeriveKeyMaterial(System.Security.Cryptography.ECDiffieHellmanPublicKey)">
1103       <summary>Derives the key material that is generated from the secret agreement between two parties, given an <see cref="T:System.Security.Cryptography.ECDiffieHellmanPublicKey" /> object that contains the second party's public key.</summary>
1104       <param name="otherPartyPublicKey">The public key from the other party in the key exchange.</param>
1105       <exception cref="T:System.ArgumentNullException">
1106         <paramref name="otherPartyPublicKey" /> is <see langword="null" />.</exception>
1107       <exception cref="T:System.ArgumentException">
1108         <paramref name="otherPartyPublicKey" /> is not an <see cref="T:System.Security.Cryptography.ECDiffieHellmanCngPublicKey" /> key.</exception>
1109       <returns>A byte array that contains the key material. This information is generated from the secret agreement that is calculated from the current object's private key and the specified public key.</returns>
1110     </member>
1111     <member name="M:System.Security.Cryptography.ECDiffieHellmanCng.DeriveKeyTls(System.Security.Cryptography.ECDiffieHellmanPublicKey,System.Byte[],System.Byte[])">
1112       <summary>Performs key derivation using the TLS (Transport Layer Security) 1.1 PRF (Pseudo-Random Function).</summary>
1113       <param name="otherPartyPublicKey">The other party's public key.</param>
1114       <param name="prfLabel">The ASCII-encoded PRF label.</param>
1115       <param name="prfSeed">The 64-byte PRF seed.</param>
1116       <exception cref="T:System.NotImplementedException">A derived class must override this method.</exception>
1117       <exception cref="T:System.ArgumentException">The curve used by <paramref name="otherPartyPublicKey" /> has a different size than the curve from this key.</exception>
1118       <exception cref="T:System.ArgumentNullException">
1119         <paramref name="otherPartyPublicKey" />, <paramref name="prfLabel" /> or <paramref name="prfSeed" /> is <see langword="null" />.</exception>
1120       <exception cref="T:System.Security.Cryptography.CryptographicException">
1121         <paramref name="prfSeed" /> is not exactly 64 bytes in length.
1122
1123 -or-
1124
1125 The curve used by <paramref name="otherPartyPublicKey" /> is different than the curve from this key.
1126
1127 -or-
1128
1129 This instance represents only a public key.</exception>
1130       <returns>The first 48 bytes from the TLS 1.1 PRF, using the shared secret as the key.</returns>
1131     </member>
1132     <member name="M:System.Security.Cryptography.ECDiffieHellmanCng.DeriveSecretAgreementHandle(System.Security.Cryptography.CngKey)">
1133       <summary>Gets a handle to the secret agreement generated between two parties, given a <see cref="T:System.Security.Cryptography.CngKey" /> object that contains the second party's public key.</summary>
1134       <param name="otherPartyPublicKey">An object that contains the public part of the Elliptic Curve Diffie-Hellman (ECDH) key from the other party in the key exchange.</param>
1135       <exception cref="T:System.ArgumentNullException">
1136         <paramref name="otherPartyPublicKey" /> is <see langword="null" />.</exception>
1137       <exception cref="T:System.ArgumentException">
1138         <paramref name="otherPartyPublicKey" /> is not an ECDH key, or it is not the correct size.</exception>
1139       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
1140       <returns>A handle to the secret agreement. This information is calculated from the current object's private key and the specified public key.</returns>
1141     </member>
1142     <member name="M:System.Security.Cryptography.ECDiffieHellmanCng.DeriveSecretAgreementHandle(System.Security.Cryptography.ECDiffieHellmanPublicKey)">
1143       <summary>Gets a handle to the secret agreement generated between two parties, given an <see cref="T:System.Security.Cryptography.ECDiffieHellmanPublicKey" /> object that contains the second party's public key.</summary>
1144       <param name="otherPartyPublicKey">The public key from the other party in the key exchange.</param>
1145       <exception cref="T:System.ArgumentNullException">
1146         <paramref name="otherPartyPublicKey" /> is <see langword="null" />.</exception>
1147       <exception cref="T:System.ArgumentException">
1148         <paramref name="otherPartyPublicKey" /> is not an <see cref="T:System.Security.Cryptography.ECDiffieHellmanPublicKey" /> key.</exception>
1149       <returns>A handle to the secret agreement. This information is calculated from the current object's private key and the specified public key.</returns>
1150     </member>
1151     <member name="M:System.Security.Cryptography.ECDiffieHellmanCng.ExportExplicitParameters(System.Boolean)">
1152       <summary>Exports the key and explicit curve parameters used by the <see cref="T:System.Security.Cryptography.ECCurve" /> object into an <see cref="T:System.Security.Cryptography.ECParameters" /> object.</summary>
1153       <param name="includePrivateParameters">
1154         <see langword="true" /> to include private parameters; otherwise, <see langword="false" />.</param>
1155       <exception cref="T:System.Security.Cryptography.CryptographicException">The method cannot obtain curve values.</exception>
1156       <exception cref="T:System.PlatformNotSupportedException">Explicit export is not supported by this platform. Windows 10 or higher is required.</exception>
1157       <returns>The key and explicit curve parameters used by the <see cref="T:System.Security.Cryptography.ECCurve" /> object.</returns>
1158     </member>
1159     <member name="M:System.Security.Cryptography.ECDiffieHellmanCng.ExportParameters(System.Boolean)">
1160       <summary>Exports the key used by the <see cref="T:System.Security.Cryptography.ECCurve" /> object into an <see cref="T:System.Security.Cryptography.ECParameters" /> object.</summary>
1161       <param name="includePrivateParameters">
1162         <see langword="true" /> to include private parameters; otherwise, <see langword="false" />.</param>
1163       <exception cref="T:System.Security.Cryptography.CryptographicException">The method cannot obtain curve values.</exception>
1164       <returns>The key and named curve parameters used by the <see cref="T:System.Security.Cryptography.ECCurve" /> object.</returns>
1165     </member>
1166     <member name="M:System.Security.Cryptography.ECDiffieHellmanCng.FromXmlString(System.String,System.Security.Cryptography.ECKeyXmlFormat)">
1167       <summary>Deserializes the key information from an XML string by using the specified format.</summary>
1168       <param name="xml">The XML-based key information to be deserialized.</param>
1169       <param name="format">One of the enumeration values that specifies the format of the XML string. The only currently accepted format is <see cref="F:System.Security.Cryptography.ECKeyXmlFormat.Rfc4050" />.</param>
1170       <exception cref="T:System.ArgumentNullException">
1171         <paramref name="xml" /> is <see langword="null" />.</exception>
1172       <exception cref="T:System.ArgumentException">
1173         <paramref name="xml" /> is malformed.</exception>
1174       <exception cref="T:System.ArgumentOutOfRangeException">
1175         <paramref name="format" /> specifies an invalid format. The only accepted value is <see cref="F:System.Security.Cryptography.ECKeyXmlFormat.Rfc4050" />.</exception>
1176       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
1177     </member>
1178     <member name="M:System.Security.Cryptography.ECDiffieHellmanCng.GenerateKey(System.Security.Cryptography.ECCurve)">
1179       <summary>Generates a new ephemeral public/private key pair for the specified curve.</summary>
1180       <param name="curve">The curve used to generate an ephemeral public/private key pair.</param>
1181       <exception cref="T:System.Security.Cryptography.CryptographicException">
1182         <paramref name="curve" /> does not validate.</exception>
1183     </member>
1184     <member name="M:System.Security.Cryptography.ECDiffieHellmanCng.ImportParameters(System.Security.Cryptography.ECParameters)">
1185       <summary>Imports the specified parameters for an <see cref="T:System.Security.Cryptography.ECCurve" /> object as a key into the current instance.</summary>
1186       <param name="parameters">The curve's parameters to import.</param>
1187       <exception cref="T:System.Security.Cryptography.CryptographicException">
1188         <paramref name="parameters" /> does not validate.</exception>
1189       <exception cref="T:System.NotSupportedException">
1190         <paramref name="parameters" /> references a curve that cannot be imported.</exception>
1191       <exception cref="T:System.PlatformNotSupportedException">
1192         <paramref name="parameters" /> references a curve that is not supported by this platform.</exception>
1193     </member>
1194     <member name="M:System.Security.Cryptography.ECDiffieHellmanCng.ToXmlString(System.Security.Cryptography.ECKeyXmlFormat)">
1195       <summary>Serializes the key information to an XML string by using the specified format.</summary>
1196       <param name="format">One of the enumeration values that specifies the format of the XML string. The only currently accepted format is <see cref="F:System.Security.Cryptography.ECKeyXmlFormat.Rfc4050" />.</param>
1197       <exception cref="T:System.ArgumentOutOfRangeException">
1198         <paramref name="format" /> specifies an invalid format. The only accepted value is <see cref="F:System.Security.Cryptography.ECKeyXmlFormat.Rfc4050" />.</exception>
1199       <returns>A string object that contains the key information, serialized to an XML string, according to the requested format.</returns>
1200     </member>
1201     <member name="P:System.Security.Cryptography.ECDiffieHellmanCng.HashAlgorithm">
1202       <summary>Gets or sets the hash algorithm to use when generating key material.</summary>
1203       <exception cref="T:System.ArgumentNullException">The value is <see langword="null" />.</exception>
1204       <returns>An object that specifies the hash algorithm.</returns>
1205     </member>
1206     <member name="P:System.Security.Cryptography.ECDiffieHellmanCng.HmacKey">
1207       <summary>Gets or sets the Hash-based Message Authentication Code (HMAC) key to use when deriving key material.</summary>
1208       <returns>The Hash-based Message Authentication Code (HMAC) key to use when deriving key material.</returns>
1209     </member>
1210     <member name="P:System.Security.Cryptography.ECDiffieHellmanCng.Key">
1211       <summary>Specifies the <see cref="T:System.Security.Cryptography.CngKey" /> that is used by the current object for cryptographic operations.</summary>
1212       <returns>The key pair used by this object to perform cryptographic operations.</returns>
1213     </member>
1214     <member name="P:System.Security.Cryptography.ECDiffieHellmanCng.KeyDerivationFunction">
1215       <summary>Gets or sets the key derivation function for the <see cref="T:System.Security.Cryptography.ECDiffieHellmanCng" /> class.</summary>
1216       <exception cref="T:System.ArgumentOutOfRangeException">The enumeration value is out of range.</exception>
1217       <returns>One of the <see cref="T:System.Security.Cryptography.ECDiffieHellmanKeyDerivationFunction" /> enumeration values: <see cref="F:System.Security.Cryptography.ECDiffieHellmanKeyDerivationFunction.Hash" />, <see cref="F:System.Security.Cryptography.ECDiffieHellmanKeyDerivationFunction.Hmac" />, or <see cref="F:System.Security.Cryptography.ECDiffieHellmanKeyDerivationFunction.Tls" />. The default value is <see cref="F:System.Security.Cryptography.ECDiffieHellmanKeyDerivationFunction.Hash" />.</returns>
1218     </member>
1219     <member name="P:System.Security.Cryptography.ECDiffieHellmanCng.KeySize">
1220       <summary>Gets or sets the size, in bits, of the key modulus used by the asymmetric algorithm.</summary>
1221       <exception cref="T:System.Security.Cryptography.CryptographicException">
1222         <paramref name="value" /> is not permitted by <see cref="P:System.Security.Cryptography.AsymmetricAlgorithm.LegalKeySizes" />.</exception>
1223       <returns>The size, in bits, of the key modulus used by the asymmetric algorithm.</returns>
1224     </member>
1225     <member name="P:System.Security.Cryptography.ECDiffieHellmanCng.Label">
1226       <summary>Gets or sets the label value that is used for key derivation.</summary>
1227       <returns>The label value.</returns>
1228     </member>
1229     <member name="P:System.Security.Cryptography.ECDiffieHellmanCng.PublicKey">
1230       <summary>Gets the public key that can be used by another <see cref="T:System.Security.Cryptography.ECDiffieHellmanCng" /> object to generate a shared secret agreement.</summary>
1231       <returns>The public key that is associated with this instance of the <see cref="T:System.Security.Cryptography.ECDiffieHellmanCng" /> object.</returns>
1232     </member>
1233     <member name="P:System.Security.Cryptography.ECDiffieHellmanCng.SecretAppend">
1234       <summary>Gets or sets a value that will be appended to the secret agreement when generating key material.</summary>
1235       <returns>The value that is appended to the secret agreement.</returns>
1236     </member>
1237     <member name="P:System.Security.Cryptography.ECDiffieHellmanCng.SecretPrepend">
1238       <summary>Gets or sets a value that will be added to the beginning of the secret agreement when deriving key material.</summary>
1239       <returns>The value that is appended to the beginning of the secret agreement during key derivation.</returns>
1240     </member>
1241     <member name="P:System.Security.Cryptography.ECDiffieHellmanCng.Seed">
1242       <summary>Gets or sets the seed value that will be used when deriving key material.</summary>
1243       <returns>The seed value.</returns>
1244     </member>
1245     <member name="P:System.Security.Cryptography.ECDiffieHellmanCng.UseSecretAgreementAsHmacKey">
1246       <summary>Gets a value that indicates whether the secret agreement is used as a Hash-based Message Authentication Code (HMAC) key to derive key material.</summary>
1247       <returns>
1248         <see langword="true" /> if the secret agreement is used as an HMAC key to derive key material; otherwise, <see langword="false" />.</returns>
1249     </member>
1250     <member name="T:System.Security.Cryptography.ECDiffieHellmanCngPublicKey">
1251       <summary>Specifies an Elliptic Curve Diffie-Hellman (ECDH) public key for use with the <see cref="T:System.Security.Cryptography.ECDiffieHellmanCng" /> class.</summary>
1252     </member>
1253     <member name="M:System.Security.Cryptography.ECDiffieHellmanCngPublicKey.ExportExplicitParameters">
1254       <summary>Exports the key and explicit curve parameters used by the <see cref="T:System.Security.Cryptography.ECCurve" /> object into an <see cref="T:System.Security.Cryptography.ECParameters" /> object.</summary>
1255       <exception cref="T:System.Security.Cryptography.CryptographicException">The method cannot obtain curve values.</exception>
1256       <exception cref="T:System.PlatformNotSupportedException">Explicit export is not supported by this platform. Windows 10 or higher is required.</exception>
1257       <returns>The key and explicit curve parameters used by the <see cref="T:System.Security.Cryptography.ECCurve" /> object.</returns>
1258     </member>
1259     <member name="M:System.Security.Cryptography.ECDiffieHellmanCngPublicKey.ExportParameters">
1260       <summary>Exports the key used by the <see cref="T:System.Security.Cryptography.ECCurve" /> object into an <see cref="T:System.Security.Cryptography.ECParameters" /> object.</summary>
1261       <exception cref="T:System.Security.Cryptography.CryptographicException">The method cannot obtain curve values.</exception>
1262       <returns>The key and named curve parameters used by the <see cref="T:System.Security.Cryptography.ECCurve" /> object.</returns>
1263     </member>
1264     <member name="M:System.Security.Cryptography.ECDiffieHellmanCngPublicKey.FromByteArray(System.Byte[],System.Security.Cryptography.CngKeyBlobFormat)">
1265       <summary>Converts a byte array that contains a public key to a <see cref="T:System.Security.Cryptography.ECDiffieHellmanCngPublicKey" /> object according to the specified format.</summary>
1266       <param name="publicKeyBlob">A byte array that contains an Elliptic Curve Diffie-Hellman (ECDH) public key.</param>
1267       <param name="format">An object that specifies the format of the key BLOB.</param>
1268       <exception cref="T:System.ArgumentNullException">The <paramref name="publicKeyBlob" /> or <paramref name="format" /> parameter is <see langword="null" />.</exception>
1269       <exception cref="T:System.ArgumentException">The <paramref name="publicKeyBlob" /> parameter does not contain an <see cref="T:System.Security.Cryptography.ECDiffieHellman" /> key.</exception>
1270       <returns>An object that contains the ECDH public key that is serialized in the byte array.</returns>
1271     </member>
1272     <member name="M:System.Security.Cryptography.ECDiffieHellmanCngPublicKey.FromXmlString(System.String)">
1273       <summary>Converts an XML string to an <see cref="T:System.Security.Cryptography.ECDiffieHellmanCngPublicKey" /> object.</summary>
1274       <param name="xml">An XML string that contains an Elliptic Curve Diffie-Hellman (ECDH) key.</param>
1275       <exception cref="T:System.ArgumentNullException">The <paramref name="xml" /> parameter is <see langword="null" />.</exception>
1276       <exception cref="T:System.ArgumentException">The <paramref name="xml" /> parameter does not specify an <see cref="T:System.Security.Cryptography.ECDiffieHellman" /> key.</exception>
1277       <returns>An object that contains the ECDH public key that is specified by the given XML.</returns>
1278     </member>
1279     <member name="M:System.Security.Cryptography.ECDiffieHellmanCngPublicKey.Import">
1280       <summary>Converts the <see cref="T:System.Security.Cryptography.ECDiffieHellmanCngPublicKey" /> object to a <see cref="T:System.Security.Cryptography.CngKey" /> object.</summary>
1281       <returns>An object that contains the key represented by the <see cref="T:System.Security.Cryptography.ECDiffieHellmanCngPublicKey" /> object.</returns>
1282     </member>
1283     <member name="M:System.Security.Cryptography.ECDiffieHellmanCngPublicKey.ToXmlString">
1284       <summary>Serializes the <see cref="T:System.Security.Cryptography.ECDiffieHellmanCngPublicKey" /> public key to an XML string in RFC 4050 format.</summary>
1285       <returns>An XML string that contains the serialized <see cref="T:System.Security.Cryptography.ECDiffieHellmanCngPublicKey" /> public key.</returns>
1286     </member>
1287     <member name="P:System.Security.Cryptography.ECDiffieHellmanCngPublicKey.BlobFormat">
1288       <summary>Gets the key BLOB format for a <see cref="T:System.Security.Cryptography.ECDiffieHellmanCngPublicKey" /> object.</summary>
1289       <returns>The format that the key BLOB is expressed in.</returns>
1290     </member>
1291     <member name="T:System.Security.Cryptography.ECDiffieHellmanKeyDerivationFunction">
1292       <summary>Specifies the key derivation function that the <see cref="T:System.Security.Cryptography.ECDiffieHellmanCng" /> class will use to convert secret agreements into key material.</summary>
1293     </member>
1294     <member name="F:System.Security.Cryptography.ECDiffieHellmanKeyDerivationFunction.Hash">
1295       <summary>A hash algorithm is used to generate key material. The <see cref="P:System.Security.Cryptography.ECDiffieHellmanCng.HashAlgorithm" /> property specifies the name of the algorithm to use. If the algorithm name is not specified, <see cref="T:System.Security.Cryptography.SHA256" /> is used as the default algorithm. You can also specify the <see cref="P:System.Security.Cryptography.ECDiffieHellmanCng.SecretPrepend" /> and <see cref="P:System.Security.Cryptography.ECDiffieHellmanCng.SecretAppend" /> properties, but they are not required. The amount of key material that is generated is equivalent to the size of the hash value for the specified algorithm.</summary>
1296     </member>
1297     <member name="F:System.Security.Cryptography.ECDiffieHellmanKeyDerivationFunction.Hmac">
1298       <summary>A Hash-based Message Authentication Code (HMAC) algorithm is used to generate key material. The <see cref="P:System.Security.Cryptography.ECDiffieHellmanCng.HmacKey" /> property specifies the key to use. Either this property must be set or the <see cref="P:System.Security.Cryptography.ECDiffieHellmanCng.UseSecretAgreementAsHmacKey" /> property must be set to <see langword="true" />; otherwise, a <see cref="T:System.Security.Cryptography.CryptographicException" /> is thrown when you use <see cref="F:System.Security.Cryptography.ECDiffieHellmanKeyDerivationFunction.Hmac" />. If both properties are set, the secret agreement is used as the HMAC key. You can also specify the <see cref="P:System.Security.Cryptography.ECDiffieHellmanCng.SecretPrepend" /> and <see cref="P:System.Security.Cryptography.ECDiffieHellmanCng.SecretAppend" /> properties, but they are not required. The amount of key material that is generated is equivalent to the size of the HMAC value.</summary>
1299     </member>
1300     <member name="F:System.Security.Cryptography.ECDiffieHellmanKeyDerivationFunction.Tls">
1301       <summary>The Transport Layer Security (TLS) protocol is used to generate key material. The <see cref="P:System.Security.Cryptography.ECDiffieHellmanCng.Seed" /> and <see cref="P:System.Security.Cryptography.ECDiffieHellmanCng.Label" /> properties must be set; otherwise, a <see cref="T:System.Security.Cryptography.CryptographicException" /> is thrown when you use <see cref="F:System.Security.Cryptography.ECDiffieHellmanKeyDerivationFunction.Tls" />. This value generates 160 bits of key material.</summary>
1302     </member>
1303     <member name="T:System.Security.Cryptography.ECDsaCng">
1304       <summary>Provides a Cryptography Next Generation (CNG) implementation of the Elliptic Curve Digital Signature Algorithm (ECDSA).</summary>
1305     </member>
1306     <member name="M:System.Security.Cryptography.ECDsaCng.#ctor">
1307       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.ECDsaCng" /> class with a random key pair.</summary>
1308       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) classes are not supported on this system.</exception>
1309     </member>
1310     <member name="M:System.Security.Cryptography.ECDsaCng.#ctor(System.Int32)">
1311       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.ECDsaCng" /> class with a specified target key size.</summary>
1312       <param name="keySize">The size of the key. Valid key sizes are 256, 384, and 521 bits.</param>
1313       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) classes are not supported on this system.</exception>
1314       <exception cref="T:System.Security.Cryptography.CryptographicException">
1315         <paramref name="keySize" /> specifies an invalid length.</exception>
1316     </member>
1317     <member name="M:System.Security.Cryptography.ECDsaCng.#ctor(System.Security.Cryptography.CngKey)">
1318       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.ECDsaCng" /> class by using the specified <see cref="T:System.Security.Cryptography.CngKey" /> object.</summary>
1319       <param name="key">The key that will be used as input to the cryptographic operations performed by the current object.</param>
1320       <exception cref="T:System.ArgumentException">
1321         <paramref name="key" /> does not specify an Elliptic Curve Digital Signature Algorithm (ECDSA) group.</exception>
1322       <exception cref="T:System.ArgumentNullException">
1323         <paramref name="key" /> is <see langword="null" />.</exception>
1324       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) classes are not supported on this system.</exception>
1325     </member>
1326     <member name="M:System.Security.Cryptography.ECDsaCng.#ctor(System.Security.Cryptography.ECCurve)">
1327       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.ECDsaCng" /> class whose public/private key pair is generated over the specified curve.</summary>
1328       <param name="curve">The curve used to generate the public/private key pair.</param>
1329       <exception cref="T:System.Security.Cryptography.CryptographicException">
1330         <paramref name="curve" /> does not validate.</exception>
1331       <exception cref="T:System.ArgumentNullException">
1332         <paramref name="curve" /> is <see langword="null" />.</exception>
1333       <exception cref="T:System.PlatformNotSupportedException">if <paramref name="curve" /> does not contain an Oid with a FriendlyName.</exception>
1334     </member>
1335     <member name="M:System.Security.Cryptography.ECDsaCng.ExportExplicitParameters(System.Boolean)">
1336       <summary>Exports the key and explicit curve parameters used by the Elliptic curve cryptography (ECC) object into an <see cref="T:System.Security.Cryptography.ECParameters" /> object.</summary>
1337       <param name="includePrivateParameters">
1338         <see langword="true" /> to include private parameters; otherwise, <see langword="false" />.</param>
1339       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while obtaining the curve values.</exception>
1340       <exception cref="T:System.PlatformNotSupportedException">Explicit export is not supported by this platform. Windows 10 or higher is required.</exception>
1341       <returns>The key and explicit curve parameters used by the ECC object.</returns>
1342     </member>
1343     <member name="M:System.Security.Cryptography.ECDsaCng.ExportParameters(System.Boolean)">
1344       <summary>Exports the key used by the Elliptic curve cryptography (ECC) object into an <see cref="T:System.Security.Cryptography.ECParameters" /> object. If the key was created as a named curve, the <see cref="F:System.Security.Cryptography.ECParameters.Curve" /> field contains named curve parameters; otherwise, it contains explicit parameters.</summary>
1345       <param name="includePrivateParameters">
1346         <see langword="true" /> to include private parameters; otherwise, <see langword="false" />.</param>
1347       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while obtaining the curve values.</exception>
1348       <returns>The key and named curve parameters used by the ECC object.</returns>
1349     </member>
1350     <member name="M:System.Security.Cryptography.ECDsaCng.FromXmlString(System.String,System.Security.Cryptography.ECKeyXmlFormat)">
1351       <summary>Deserializes the key information from an XML string by using the specified format.</summary>
1352       <param name="xml">The XML-based key information to be deserialized.</param>
1353       <param name="format">One of the enumeration values that specifies the format of the XML string. The only currently accepted format is <see cref="F:System.Security.Cryptography.ECKeyXmlFormat.Rfc4050" />.</param>
1354       <exception cref="T:System.ArgumentNullException">
1355         <paramref name="xml" /> is <see langword="null" />.</exception>
1356       <exception cref="T:System.ArgumentOutOfRangeException">
1357         <paramref name="format" /> specifies an invalid format. The only accepted value is <see cref="F:System.Security.Cryptography.ECKeyXmlFormat.Rfc4050" />.</exception>
1358       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
1359     </member>
1360     <member name="M:System.Security.Cryptography.ECDsaCng.GenerateKey(System.Security.Cryptography.ECCurve)">
1361       <summary>Generates a new ephemeral public/private key pair for the specified curve, replacing the current key.</summary>
1362       <param name="curve">The curve to use to generate the key.</param>
1363       <exception cref="T:System.Security.Cryptography.CryptographicException">
1364         <paramref name="curve" /> does not validate.</exception>
1365     </member>
1366     <member name="M:System.Security.Cryptography.ECDsaCng.ImportParameters(System.Security.Cryptography.ECParameters)">
1367       <summary>Replaces the existing key that the current instance is working with by creating a new <see cref="T:System.Security.Cryptography.CngKey" /> for the parameters structure.</summary>
1368       <param name="parameters">The curve parameters.</param>
1369       <exception cref="T:System.Security.Cryptography.CryptographicException">
1370         <paramref name="parameters" /> does not contain valid values.</exception>
1371       <exception cref="T:System.NotSupportedException">
1372         <paramref name="parameters" /> references a curve that cannot be imported.</exception>
1373       <exception cref="T:System.PlatformNotSupportedException">
1374         <paramref name="parameters" /> references a curve that is not supported by this platform.</exception>
1375     </member>
1376     <member name="M:System.Security.Cryptography.ECDsaCng.SignData(System.Byte[])">
1377       <summary>Generates a signature for the specified data.</summary>
1378       <param name="data">The message data to be signed.</param>
1379       <exception cref="T:System.ArgumentNullException">
1380         <paramref name="data" /> is <see langword="null" />.</exception>
1381       <exception cref="T:System.Security.Cryptography.CryptographicException">The key information that is associated with the instance does not have a private key.</exception>
1382       <returns>A digital signature for the specified data.</returns>
1383     </member>
1384     <member name="M:System.Security.Cryptography.ECDsaCng.SignData(System.Byte[],System.Int32,System.Int32)">
1385       <summary>Generates a digital signature for the specified length of data, beginning at the specified offset.</summary>
1386       <param name="data">The message data to be signed.</param>
1387       <param name="offset">The location in the string at which to start signing.</param>
1388       <param name="count">The length of the string, in characters, following <paramref name="offset" /> that will be signed.</param>
1389       <exception cref="T:System.ArgumentNullException">
1390         <paramref name="data" /> is <see langword="null" />.</exception>
1391       <exception cref="T:System.ArgumentOutOfRangeException">
1392         <paramref name="count" /> or <paramref name="offset" /> caused reading outside the bounds of the data string.</exception>
1393       <exception cref="T:System.Security.Cryptography.CryptographicException">The key information that is associated with the instance does not have a private key.</exception>
1394       <returns>A digital signature for the specified length of data.</returns>
1395     </member>
1396     <member name="M:System.Security.Cryptography.ECDsaCng.SignData(System.IO.Stream)">
1397       <summary>Generates a signature for the specified data stream, reading to the end of the stream.</summary>
1398       <param name="data">The data stream to be signed.</param>
1399       <exception cref="T:System.ArgumentNullException">
1400         <paramref name="data" /> is <see langword="null" />.</exception>
1401       <exception cref="T:System.Security.Cryptography.CryptographicException">The key information that is associated with the instance does not have a private key.</exception>
1402       <returns>A digital signature for the specified data stream.</returns>
1403     </member>
1404     <member name="M:System.Security.Cryptography.ECDsaCng.SignHash(System.Byte[])">
1405       <summary>Generates a signature for the specified hash value.</summary>
1406       <param name="hash">The hash value of the data to be signed.</param>
1407       <exception cref="T:System.ArgumentNullException">
1408         <paramref name="hash" /> is <see langword="null" />.</exception>
1409       <exception cref="T:System.Security.Cryptography.CryptographicException">The key information that is associated with the instance does not have a private key.</exception>
1410       <returns>A digital signature for the specified hash value.</returns>
1411     </member>
1412     <member name="M:System.Security.Cryptography.ECDsaCng.ToXmlString(System.Security.Cryptography.ECKeyXmlFormat)">
1413       <summary>Serializes the key information to an XML string by using the specified format.</summary>
1414       <param name="format">One of the enumeration values that specifies the format of the XML string. The only currently accepted format is <see cref="F:System.Security.Cryptography.ECKeyXmlFormat.Rfc4050" />.</param>
1415       <exception cref="T:System.ArgumentOutOfRangeException">
1416         <paramref name="format" /> specifies an invalid format. The only accepted value is <see cref="F:System.Security.Cryptography.ECKeyXmlFormat.Rfc4050" />.</exception>
1417       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
1418       <returns>A string object that contains the key information, serialized to an XML string according to the requested format.</returns>
1419     </member>
1420     <member name="M:System.Security.Cryptography.ECDsaCng.VerifyData(System.Byte[],System.Byte[])">
1421       <summary>Verifies the digital signature of the specified data.</summary>
1422       <param name="data">The data that was signed.</param>
1423       <param name="signature">The signature to be verified.</param>
1424       <exception cref="T:System.ArgumentNullException">
1425         <paramref name="data" /> or <paramref name="signature" /> is <see langword="null" />.</exception>
1426       <returns>
1427         <see langword="true" /> if the signature is valid; otherwise, <see langword="false" />.</returns>
1428     </member>
1429     <member name="M:System.Security.Cryptography.ECDsaCng.VerifyData(System.Byte[],System.Int32,System.Int32,System.Byte[])">
1430       <summary>Verifies a signature for the specified length of data, beginning at the specified offset.</summary>
1431       <param name="data">The data that was signed.</param>
1432       <param name="offset">The location in the data at which the signed data begins.</param>
1433       <param name="count">The length of the data, in characters, following <paramref name="offset" /> that will be signed.</param>
1434       <param name="signature">The signature to be verified.</param>
1435       <exception cref="T:System.ArgumentOutOfRangeException">
1436         <paramref name="offset" /> or <paramref name="count" /> is less then zero.  
1437   
1438  -or-  
1439   
1440  <paramref name="offset" /> or <paramref name="count" /> is larger than the length of the byte array passed in the <paramref name="data" /> parameter.</exception>
1441       <exception cref="T:System.ArgumentNullException">
1442         <paramref name="data" /> or <paramref name="signature" /> is <see langword="null" />.</exception>
1443       <returns>
1444         <see langword="true" /> if the signature is valid; otherwise, <see langword="false" />.</returns>
1445     </member>
1446     <member name="M:System.Security.Cryptography.ECDsaCng.VerifyData(System.IO.Stream,System.Byte[])">
1447       <summary>Verifies the digital signature of the specified data stream, reading to the end of the stream.</summary>
1448       <param name="data">The data stream that was signed.</param>
1449       <param name="signature">The signature to be verified.</param>
1450       <exception cref="T:System.ArgumentNullException">
1451         <paramref name="data" /> or <paramref name="signature" /> is <see langword="null" />.</exception>
1452       <returns>
1453         <see langword="true" /> if the signature is valid; otherwise, <see langword="false" />.</returns>
1454     </member>
1455     <member name="M:System.Security.Cryptography.ECDsaCng.VerifyHash(System.Byte[],System.Byte[])">
1456       <summary>Verifies that a digital signature is appropriate for the current key and provided data hash.</summary>
1457       <param name="hash">The hash value of the data to be verified.</param>
1458       <param name="signature">The digital signature of the data to be verified against the hash value.</param>
1459       <exception cref="T:System.ArgumentNullException">
1460         <paramref name="hash" /> or <paramref name="signature" /> is <see langword="null" />.</exception>
1461       <returns>
1462         <see langword="true" /> if the signature is valid; otherwise, <see langword="false" />.</returns>
1463     </member>
1464     <member name="P:System.Security.Cryptography.ECDsaCng.HashAlgorithm">
1465       <summary>Gets or sets the hash algorithm to use when signing and verifying data.</summary>
1466       <exception cref="T:System.ArgumentNullException">The value is <see langword="null" />.</exception>
1467       <returns>An object that specifies the hash algorithm.</returns>
1468     </member>
1469     <member name="P:System.Security.Cryptography.ECDsaCng.Key">
1470       <summary>Gets or sets the key to use when signing and verifying data.</summary>
1471       <returns>An object that specifies the key.</returns>
1472     </member>
1473     <member name="P:System.Security.Cryptography.ECDsaCng.KeySize">
1474       <summary>Gets or sets the size, in bits, of the key modulus used by the asymmetric algorithm.</summary>
1475       <exception cref="T:System.Security.Cryptography.CryptographicException">
1476         <paramref name="value" /> is not permitted by <see cref="P:System.Security.Cryptography.ECDsaCng.LegalKeySizes" />.</exception>
1477       <returns>The size, in bits, of the key modulus used by the asymmetric algorithm.</returns>
1478     </member>
1479     <member name="P:System.Security.Cryptography.ECDsaCng.LegalKeySizes">
1480       <summary>Gets the key sizes, in bits, that are supported by the <see cref="P:System.Security.Cryptography.ECDsaCng.KeySize" /> property setter.</summary>
1481       <returns>An array that contains the key sizes supported by the <see cref="P:System.Security.Cryptography.ECDsaCng.KeySize" /> property setter.</returns>
1482     </member>
1483     <member name="T:System.Security.Cryptography.ECKeyXmlFormat">
1484       <summary>Defines XML serialization formats for elliptic curve keys.</summary>
1485     </member>
1486     <member name="F:System.Security.Cryptography.ECKeyXmlFormat.Rfc4050">
1487       <summary>An XML serialization format described in RFC 4050, "Using the Elliptic Curve Signature Algorithm (ECDSA) for XML Digital Signatures."</summary>
1488     </member>
1489     <member name="T:System.Security.Cryptography.RSACng">
1490       <summary>Provides a Cryptography Next Generation (CNG) implementation of the RSA algorithm.</summary>
1491     </member>
1492     <member name="M:System.Security.Cryptography.RSACng.#ctor">
1493       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSACng" /> class with a random 2,048-bit key pair.</summary>
1494     </member>
1495     <member name="M:System.Security.Cryptography.RSACng.#ctor(System.Int32)">
1496       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSACng" /> class with a randomly generated key of the specified size.</summary>
1497       <param name="keySize">The size of the key to generate in bits.</param>
1498       <exception cref="T:System.Security.Cryptography.CryptographicException">
1499         <paramref name="keySize" /> is not valid.</exception>
1500     </member>
1501     <member name="M:System.Security.Cryptography.RSACng.#ctor(System.Security.Cryptography.CngKey)">
1502       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.RSACng" /> class with the specified key.</summary>
1503       <param name="key">The key to use for RSA operations.</param>
1504       <exception cref="T:System.ArgumentException">
1505         <paramref name="key" /> is not a valid RSA key.</exception>
1506       <exception cref="T:System.ArgumentNullException">
1507         <paramref name="key" /> is <see langword="null" />.</exception>
1508     </member>
1509     <member name="M:System.Security.Cryptography.RSACng.Decrypt(System.Byte[],System.Security.Cryptography.RSAEncryptionPadding)">
1510       <summary>Decrypts input data using the specified padding mode.</summary>
1511       <param name="data">The data to decrypt.</param>
1512       <param name="padding">The padding mode.</param>
1513       <exception cref="T:System.ArgumentNullException">
1514         <paramref name="data" /> is <see langword="null" />.
1515   
1516  -or-  
1517   
1518  <paramref name="padding" /> is <see langword="null" />.</exception>
1519       <exception cref="T:System.Security.Cryptography.CryptographicException">
1520         <paramref name="padding" />.<see cref="P:System.Security.Cryptography.RSAEncryptionPadding.Mode" /> isn't equal to <see cref="F:System.Security.Cryptography.RSAEncryptionPaddingMode.Pkcs1" /> or <see cref="F:System.Security.Cryptography.RSAEncryptionPaddingMode.Oaep" />.</exception>
1521       <returns>The decrypted data.</returns>
1522     </member>
1523     <member name="M:System.Security.Cryptography.RSACng.Encrypt(System.Byte[],System.Security.Cryptography.RSAEncryptionPadding)">
1524       <summary>Encrypts the input data using the specified padding.</summary>
1525       <param name="data">The data to encrypt.</param>
1526       <param name="padding">The padding mode.</param>
1527       <exception cref="T:System.ArgumentNullException">
1528         <paramref name="data" /> is <see langword="null" />.
1529   
1530  -or-  
1531   
1532  <paramref name="padding" /> is <see langword="null" />.</exception>
1533       <exception cref="T:System.Security.Cryptography.CryptographicException">
1534         <paramref name="padding" />.<see cref="P:System.Security.Cryptography.RSAEncryptionPadding.Mode" /> isn't equal to <see cref="F:System.Security.Cryptography.RSAEncryptionPaddingMode.Pkcs1" /> or <see cref="F:System.Security.Cryptography.RSAEncryptionPaddingMode.Oaep" />.</exception>
1535       <returns>The encrypted data.</returns>
1536     </member>
1537     <member name="M:System.Security.Cryptography.RSACng.ExportParameters(System.Boolean)">
1538       <summary>Exports the key used by the RSA object into a <see cref="T:System.Security.Cryptography.RSAParameters" /> object.</summary>
1539       <param name="includePrivateParameters">
1540         <see langword="true" /> to include private parameters; otherwise, <see langword="false" />.</param>
1541       <returns>The key used by the RSA object.</returns>
1542     </member>
1543     <member name="M:System.Security.Cryptography.RSACng.ImportParameters(System.Security.Cryptography.RSAParameters)">
1544       <summary>Replaces the existing key that the current instance is working with by creating a new <see cref="T:System.Security.Cryptography.CngKey" /> for the parameters structure.</summary>
1545       <param name="parameters">The RSA parameters.</param>
1546       <exception cref="T:System.ArgumentException">
1547         <paramref name="parameters" /> contains neither an exponent nor a modulus.</exception>
1548       <exception cref="T:System.Security.Cryptography.CryptographicException">
1549         <paramref name="parameters" /> is not a valid RSA key.  
1550   
1551  -or-  
1552   
1553  <paramref name="parameters" /> is a full key pair and the default KSP is used.</exception>
1554     </member>
1555     <member name="M:System.Security.Cryptography.RSACng.SignHash(System.Byte[],System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding)">
1556       <summary>Signs data that was hashed by using the specified hashing algorithm and padding mode.</summary>
1557       <param name="hash">The hash to sign.</param>
1558       <param name="hashAlgorithm">The hash algorithm name.</param>
1559       <param name="padding">The padding mode.</param>
1560       <exception cref="T:System.ArgumentNullException">
1561         <paramref name="hash" /> is <see langword="null" />.  
1562   
1563  -or-  
1564   
1565  <paramref name="padding" /> is <see langword="null" />.</exception>
1566       <exception cref="T:System.ArgumentException">The value of the <see cref="P:System.Security.Cryptography.HashAlgorithmName.Name" /> property of <paramref name="hashAlgorithm" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.</exception>
1567       <exception cref="T:System.Security.Cryptography.CryptographicException">
1568         <paramref name="padding" /> does not equal <see cref="P:System.Security.Cryptography.RSASignaturePadding.Pkcs1" /> or <see cref="P:System.Security.Cryptography.RSASignaturePadding.Pss" />.</exception>
1569       <returns>The signed data.</returns>
1570     </member>
1571     <member name="M:System.Security.Cryptography.RSACng.VerifyHash(System.Byte[],System.Byte[],System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding)">
1572       <summary>Verifies data that was signed and already hashed with the specified algorithm and padding mode.</summary>
1573       <param name="hash">The hash to verify.</param>
1574       <param name="signature">The signature of the data.</param>
1575       <param name="hashAlgorithm">The hash algorithm name.</param>
1576       <param name="padding">The padding mode.</param>
1577       <exception cref="T:System.ArgumentNullException">
1578         <paramref name="hash" /> is <see langword="null" />.  
1579   
1580  -or-  
1581   
1582  <paramref name="signature" /> is <see langword="null" />.  
1583   
1584  -or-  
1585   
1586  <paramref name="padding" /> is <see langword="null" />.</exception>
1587       <exception cref="T:System.ArgumentException">The value of the <see cref="P:System.Security.Cryptography.HashAlgorithmName.Name" /> property of <paramref name="hashAlgorithm" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.</exception>
1588       <exception cref="T:System.Security.Cryptography.CryptographicException">
1589         <paramref name="padding" /> does not equal <see cref="P:System.Security.Cryptography.RSASignaturePadding.Pkcs1" /> or <see cref="P:System.Security.Cryptography.RSASignaturePadding.Pss" />.  
1590   
1591  -or-  
1592   
1593  The signature is badly formatted. (In the .NET Framework 4.6 and 4.6.1 only; starting with the .NET Framework 4.6.2, the method returns <see langword="false" /> if a signature is badly formatted.</exception>
1594       <returns>
1595         <see langword="true" /> if the signature verifies for the hash; otherwise, <see langword="false" />.</returns>
1596     </member>
1597     <member name="P:System.Security.Cryptography.RSACng.Key">
1598       <summary>Gets the key that will be used by the <see cref="T:System.Security.Cryptography.RSACng" /> object for any cryptographic operation that it performs.</summary>
1599       <returns>The key used by the <see cref="T:System.Security.Cryptography.RSACng" /> object.</returns>
1600     </member>
1601     <member name="P:System.Security.Cryptography.RSACng.LegalKeySizes">
1602       <summary>Gets the key sizes, in bits, that are supported by this implementation of RSA.</summary>
1603       <returns>An array that contains the key sizes supported by the algorithm.</returns>
1604     </member>
1605     <member name="T:System.Security.Cryptography.TripleDESCng">
1606       <summary>Provides a Cryptography Next Generation (CNG) implementation of the Triple Data Encryption Standard (3DES) algorithm.</summary>
1607     </member>
1608     <member name="M:System.Security.Cryptography.TripleDESCng.#ctor">
1609       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.TripleDESCng" /> class with an ephemeral key.</summary>
1610     </member>
1611     <member name="M:System.Security.Cryptography.TripleDESCng.#ctor(System.String)">
1612       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.TripleDESCng" /> class with the specified key name, which represents an existing persisted 3DES key.</summary>
1613       <param name="keyName">The name of the key.</param>
1614       <exception cref="T:System.ArgumentNullException">
1615         <paramref name="keyName" /> is <see langword="null" />.</exception>
1616       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
1617       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
1618     </member>
1619     <member name="M:System.Security.Cryptography.TripleDESCng.#ctor(System.String,System.Security.Cryptography.CngProvider)">
1620       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.TripleDESCng" /> class with the specified key name, which represents an existing persisted 3DES key, and the specified key storage provider (KSP).</summary>
1621       <param name="keyName">The name of the key.</param>
1622       <param name="provider">The KSP that contains the key.</param>
1623       <exception cref="T:System.ArgumentNullException">
1624         <paramref name="keyName" /> is <see langword="null" />.  
1625   
1626  -or-  
1627   
1628  <paramref name="provider" /> is <see langword="null" />.</exception>
1629       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
1630       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
1631     </member>
1632     <member name="M:System.Security.Cryptography.TripleDESCng.#ctor(System.String,System.Security.Cryptography.CngProvider,System.Security.Cryptography.CngKeyOpenOptions)">
1633       <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.TripleDESCng" /> class with the specified key name, which represents an existing persisted 3DES key,  the specified key storage provider (KSP) and key open options.</summary>
1634       <param name="keyName">The name of the key.</param>
1635       <param name="provider">The KSP that contains the key.</param>
1636       <param name="openOptions">A bitwise combination of the enumeration values that specify options for opening the key, such as where the key is opened from (machine or user storage) and whether to suppress UI prompting.</param>
1637       <exception cref="T:System.ArgumentNullException">
1638         <paramref name="keyName" /> is <see langword="null" />.  
1639   
1640  -or-  
1641   
1642  <paramref name="provider" /> is <see langword="null" />.</exception>
1643       <exception cref="T:System.PlatformNotSupportedException">Cryptography Next Generation (CNG) is not supported on this system.</exception>
1644       <exception cref="T:System.Security.Cryptography.CryptographicException">All other errors.</exception>
1645     </member>
1646     <member name="M:System.Security.Cryptography.TripleDESCng.CreateDecryptor">
1647       <summary>Creates a symmetric 3DES decryptor object with the current key and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />).</summary>
1648       <returns>A symmetric 3DES decryptor object.</returns>
1649     </member>
1650     <member name="M:System.Security.Cryptography.TripleDESCng.CreateDecryptor(System.Byte[],System.Byte[])">
1651       <summary>Creates a symmetric 3DES decryptor object with the specified key and initialization vector (IV).</summary>
1652       <param name="rgbKey">The secret key to use for the 3DES algorithm. The key size must be 192 bits.</param>
1653       <param name="rgbIV">The initialization vector to use for the 3DES algorithm.</param>
1654       <exception cref="T:System.ArgumentNullException">
1655         <paramref name="rgbKey" /> is <see langword="null" />.</exception>
1656       <exception cref="T:System.ArgumentException">
1657         <paramref name="rgbKey" /> is not a valid size for this algorithm.  
1658   
1659  -or-  
1660   
1661  <paramref name="rgbIV" /> size does not match the block size for this algorithm.</exception>
1662       <exception cref="T:System.Security.Cryptography.CryptographicException">
1663         <paramref name="rgbKey" /> is a known weak key for this algorithm and cannot be used.  
1664   
1665  -or-  
1666   
1667  <paramref name="rgbIV" /> is <see langword="null" />.</exception>
1668       <returns>A symmetric 3DES decryptor object.</returns>
1669     </member>
1670     <member name="M:System.Security.Cryptography.TripleDESCng.CreateEncryptor">
1671       <summary>Creates a symmetric 3DES encryptor object using the current key and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV" />).</summary>
1672       <returns>A symmetric 3DES encryptor object.</returns>
1673     </member>
1674     <member name="M:System.Security.Cryptography.TripleDESCng.CreateEncryptor(System.Byte[],System.Byte[])">
1675       <summary>Creates a symmetric 3DES encryptor object with the specified key and initialization vector (IV).</summary>
1676       <param name="rgbKey">The secret key to use for the 3DES algorithm. The key size must be 192 bits.</param>
1677       <param name="rgbIV">The initialization vector to use for the 3DES algorithm.</param>
1678       <exception cref="T:System.ArgumentNullException">
1679         <paramref name="rgbKey" /> is <see langword="null" />.</exception>
1680       <exception cref="T:System.ArgumentException">
1681         <paramref name="rgbKey" /> is not a valid size for this algorithm.  
1682   
1683  -or-  
1684   
1685  <paramref name="rgbIV" /> size does not match the block size for this algorithm.</exception>
1686       <exception cref="T:System.Security.Cryptography.CryptographicException">
1687         <paramref name="rgbKey" /> is a known weak key for this algorithm and cannot be used.  
1688   
1689  -or-  
1690   
1691  <paramref name="rgbIV" /> is <see langword="null" />.</exception>
1692       <returns>A symmetric 3DES encryptor object.</returns>
1693     </member>
1694     <member name="M:System.Security.Cryptography.TripleDESCng.GenerateIV">
1695       <summary>Generates a random initialization vector (IV) to use for the 3DES algorithm.</summary>
1696     </member>
1697     <member name="M:System.Security.Cryptography.TripleDESCng.GenerateKey">
1698       <summary>Generates a random key to use for the 3DES algorithm.</summary>
1699     </member>
1700     <member name="P:System.Security.Cryptography.TripleDESCng.Key">
1701       <summary>Gets or sets the key for the <see cref="T:System.Security.Cryptography.TripleDESCng" /> algorithm.</summary>
1702       <returns>The key for the <see cref="T:System.Security.Cryptography.TripleDESCng" /> algorithm.</returns>
1703     </member>
1704     <member name="P:System.Security.Cryptography.TripleDESCng.KeySize">
1705       <summary>Gets or sets the size, in bits, of the secret key used by the <see cref="T:System.Security.Cryptography.TripleDESCng" /> algorithm.</summary>
1706       <returns>The size, in bits, of the secret key used by the <see cref="T:System.Security.Cryptography.TripleDESCng" /> algorithm.</returns>
1707     </member>
1708   </members>
1709 </doc>