[Build] Move netcoreapp ref assemblies to Tizen.NET.APIx
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API6 / build / tizen60 / ref / System.Security.Cryptography.Primitives.xml
@@ -15,7 +15,7 @@
     </member>
     <member name="M:System.Security.Cryptography.AsymmetricAlgorithm.Create">
       <summary>Creates a default cryptographic object used to perform the asymmetric algorithm.</summary>
-      <returns>A new <see cref="System.Security.Cryptography.RSACryptoServiceProvider"></see> instance, unless the default settings have been changed with the &amp;lt;cryptoClass&amp;gt; element.</returns>
+      <returns>A new <see cref="T:System.Security.Cryptography.RSACryptoServiceProvider"></see> instance, unless the default settings have been changed with the &amp;lt;cryptoClass&amp;gt; element.</returns>
     </member>
     <member name="M:System.Security.Cryptography.AsymmetricAlgorithm.Create(System.String)">
       <summary>Creates an instance of the specified implementation of an asymmetric algorithm.</summary>
@@ -56,7 +56,7 @@
     </member>
     <member name="M:System.Security.Cryptography.AsymmetricAlgorithm.Dispose(System.Boolean)">
       <summary>Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm"></see> class and optionally releases the managed resources.</summary>
-      <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+      <param name="disposing"><see langword="true"></see> to release both managed and unmanaged resources; <see langword="false"></see> to release only unmanaged resources.</param>
     </member>
     <member name="M:System.Security.Cryptography.AsymmetricAlgorithm.FromXmlString(System.String)">
       <summary>When overridden in a derived class, reconstructs an <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm"></see> object from an XML string. Otherwise, throws a <see cref="T:System.NotImplementedException"></see>.</summary>
     </member>
     <member name="M:System.Security.Cryptography.AsymmetricAlgorithm.ToXmlString(System.Boolean)">
       <summary>When overridden in a derived class, creates and returns an XML string representation of the current <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm"></see> object. Otherwise, throws a <see cref="T:System.NotImplementedException"></see>.</summary>
-      <param name="includePrivateParameters">true to include private parameters; otherwise, false.</param>
-      <returns>An XML string encoding of the current <see cref="System.Security.Cryptography.AsymmetricAlgorithm"></see> object.</returns>
+      <param name="includePrivateParameters"><see langword="true"></see> to include private parameters; otherwise, <see langword="false"></see>.</param>
+      <returns>An XML string encoding of the current <see cref="T:System.Security.Cryptography.AsymmetricAlgorithm"></see> object.</returns>
     </member>
-    <member name="T:System.Security.Cryptography.CipherMode">
-      <summary>Specifies the block cipher mode to use for encryption.</summary>
+    <member name="T:System.Security.Cryptography.SymmetricAlgorithm">
+      <summary>Represents the abstract base class from which all implementations of symmetric algorithms must inherit.</summary>
     </member>
-    <member name="F:System.Security.Cryptography.CipherMode.CBC">
-      <summary>The Cipher Block Chaining (CBC) mode introduces feedback. Before each plain text block is encrypted, it is combined with the cipher text of the previous block by a bitwise exclusive OR operation. This ensures that even if the plain text contains many identical blocks, they will each encrypt to a different cipher text block. The initialization vector is combined with the first plain text block by a bitwise exclusive OR operation before the block is encrypted. If a single bit of the cipher text block is mangled, the corresponding plain text block will also be mangled. In addition, a bit in the subsequent block, in the same position as the original mangled bit, will be mangled.</summary>
+    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.#ctor">
+      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.SymmetricAlgorithm"></see> class.</summary>
+      <exception cref="T:System.Security.Cryptography.CryptographicException">The implementation of the class derived from the symmetric algorithm is not valid.</exception>
+    </member>
+    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.BlockSize">
+      <summary>Gets or sets the block size, in bits, of the cryptographic operation.</summary>
+      <returns>The block size, in bits.</returns>
+      <exception cref="T:System.Security.Cryptography.CryptographicException">The block size is invalid.</exception>
+    </member>
+    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.BlockSizeValue">
+      <summary>Represents the block size, in bits, of the cryptographic operation.</summary>
       <returns></returns>
     </member>
-    <member name="F:System.Security.Cryptography.CipherMode.CFB">
-      <summary>The Cipher Feedback (CFB) mode processes small increments of plain text into cipher text, instead of processing an entire block at a time. This mode uses a shift register that is one block in length and is divided into sections. For example, if the block size is 8 bytes, with one byte processed at a time, the shift register is divided into eight sections. If a bit in the cipher text is mangled, one plain text bit is mangled and the shift register is corrupted. This results in the next several plain text increments being mangled until the bad bit is shifted out of the shift register. The default feedback size can vary by algorithm, but is typically either 8 bits or the number of bits of the block size. You can alter the number of feedback bits by using the <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.FeedbackSize"></see> property. Algorithms that support CFB use this property to set the feedback.</summary>
+    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.Clear">
+      <summary>Releases all resources used by the <see cref="T:System.Security.Cryptography.SymmetricAlgorithm"></see> class.</summary>
+    </member>
+    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.Create">
+      <summary>Creates a default cryptographic object used to perform the symmetric algorithm.</summary>
+      <returns>A default cryptographic object used to perform the symmetric algorithm.</returns>
+    </member>
+    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.Create(System.String)">
+      <summary>Creates the specified cryptographic object used to perform the symmetric algorithm.</summary>
+      <param name="algName">The name of the specific implementation of the <see cref="T:System.Security.Cryptography.SymmetricAlgorithm"></see> class to use.</param>
+      <returns>A cryptographic object used to perform the symmetric algorithm.</returns>
+    </member>
+    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.CreateDecryptor">
+      <summary>Creates a symmetric decryptor object with the current <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key"></see> property and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV"></see>).</summary>
+      <returns>A symmetric decryptor object.</returns>
+    </member>
+    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.CreateDecryptor(System.Byte[],System.Byte[])">
+      <summary>When overridden in a derived class, creates a symmetric decryptor object with the specified <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key"></see> property and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV"></see>).</summary>
+      <param name="rgbKey">The secret key to use for the symmetric algorithm.</param>
+      <param name="rgbIV">The initialization vector to use for the symmetric algorithm.</param>
+      <returns>A symmetric decryptor object.</returns>
+    </member>
+    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.CreateEncryptor">
+      <summary>Creates a symmetric encryptor object with the current <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key"></see> property and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV"></see>).</summary>
+      <returns>A symmetric encryptor object.</returns>
+    </member>
+    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.CreateEncryptor(System.Byte[],System.Byte[])">
+      <summary>When overridden in a derived class, creates a symmetric encryptor object with the specified <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key"></see> property and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV"></see>).</summary>
+      <param name="rgbKey">The secret key to use for the symmetric algorithm.</param>
+      <param name="rgbIV">The initialization vector to use for the symmetric algorithm.</param>
+      <returns>A symmetric encryptor object.</returns>
+    </member>
+    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.Dispose">
+      <summary>Releases all resources used by the current instance of the <see cref="T:System.Security.Cryptography.SymmetricAlgorithm"></see> class.</summary>
+    </member>
+    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.Dispose(System.Boolean)">
+      <summary>Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.SymmetricAlgorithm"></see> and optionally releases the managed resources.</summary>
+      <param name="disposing"><see langword="true"></see> to release both managed and unmanaged resources; <see langword="false"></see> to release only unmanaged resources.</param>
+    </member>
+    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.FeedbackSize">
+      <summary>Gets or sets the feedback size, in bits, of the cryptographic operation.</summary>
+      <returns>The feedback size in bits.</returns>
+      <exception cref="T:System.Security.Cryptography.CryptographicException">The feedback size is larger than the block size.</exception>
+    </member>
+    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.FeedbackSizeValue">
+      <summary>Represents the feedback size, in bits, of the cryptographic operation.</summary>
       <returns></returns>
     </member>
-    <member name="F:System.Security.Cryptography.CipherMode.CTS">
-      <summary>The Cipher Text Stealing (CTS) mode handles any length of plain text and produces cipher text whose length matches the plain text length. This mode behaves like the CBC mode for all but the last two blocks of the plain text.</summary>
+    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.GenerateIV">
+      <summary>When overridden in a derived class, generates a random initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV"></see>) to use for the algorithm.</summary>
+    </member>
+    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.GenerateKey">
+      <summary>When overridden in a derived class, generates a random key (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key"></see>) to use for the algorithm.</summary>
+    </member>
+    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.IV">
+      <summary>Gets or sets the initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV"></see>) for the symmetric algorithm.</summary>
+      <returns>The initialization vector.</returns>
+      <exception cref="T:System.ArgumentNullException">An attempt was made to set the initialization vector to <see langword="null"></see>.</exception>
+      <exception cref="T:System.Security.Cryptography.CryptographicException">An attempt was made to set the initialization vector to an invalid size.</exception>
+    </member>
+    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.IVValue">
+      <summary>Represents the initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV"></see>) for the symmetric algorithm.</summary>
       <returns></returns>
     </member>
-    <member name="F:System.Security.Cryptography.CipherMode.ECB">
-      <summary>The Electronic Codebook (ECB) mode encrypts each block individually. Any blocks of plain text that are identical and in the same message, or that are in a different message encrypted with the same key, will be transformed into identical cipher text blocks. Important:  This mode is not recommended because it opens the door for multiple security exploits. If the plain text to be encrypted contains substantial repetition, it is feasible for the cipher text to be broken one block at a time. It is also possible to use block analysis to determine the encryption key. Also, an active adversary can substitute and exchange individual blocks without detection, which allows blocks to be saved and inserted into the stream at other points without detection.</summary>
+    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.Key">
+      <summary>Gets or sets the secret key for the symmetric algorithm.</summary>
+      <returns>The secret key to use for the symmetric algorithm.</returns>
+      <exception cref="T:System.ArgumentNullException">An attempt was made to set the key to <see langword="null"></see>.</exception>
+      <exception cref="T:System.Security.Cryptography.CryptographicException">The key size is invalid.</exception>
+    </member>
+    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.KeySize">
+      <summary>Gets or sets the size, in bits, of the secret key used by the symmetric algorithm.</summary>
+      <returns>The size, in bits, of the secret key used by the symmetric algorithm.</returns>
+      <exception cref="T:System.Security.Cryptography.CryptographicException">The key size is not valid.</exception>
+    </member>
+    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.KeySizeValue">
+      <summary>Represents the size, in bits, of the secret key used by the symmetric algorithm.</summary>
       <returns></returns>
     </member>
-    <member name="F:System.Security.Cryptography.CipherMode.OFB">
-      <summary>The Output Feedback (OFB) mode processes small increments of plain text into cipher text instead of processing an entire block at a time. This mode is similar to CFB; the only difference between the two modes is the way that the shift register is filled. If a bit in the cipher text is mangled, the corresponding bit of plain text will be mangled. However, if there are extra or missing bits from the cipher text, the plain text will be mangled from that point on.</summary>
+    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.KeyValue">
+      <summary>Represents the secret key for the symmetric algorithm.</summary>
       <returns></returns>
     </member>
-    <member name="T:System.Security.Cryptography.CryptographicException">
-      <summary>The exception that is thrown when an error occurs during a cryptographic operation.</summary>
+    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.LegalBlockSizes">
+      <summary>Gets the block sizes, in bits, that are supported by the symmetric algorithm.</summary>
+      <returns>An array that contains the block sizes supported by the algorithm.</returns>
     </member>
-    <member name="M:System.Security.Cryptography.CryptographicException.#ctor">
-      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException"></see> class with default properties.</summary>
+    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.LegalBlockSizesValue">
+      <summary>Specifies the block sizes, in bits, that are supported by the symmetric algorithm.</summary>
+      <returns></returns>
     </member>
-    <member name="M:System.Security.Cryptography.CryptographicException.#ctor(System.Int32)">
-      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException"></see> class with the specified HRESULT error code.</summary>
-      <param name="hr">The HRESULT error code.</param>
+    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.LegalKeySizes">
+      <summary>Gets the key sizes, in bits, that are supported by the symmetric algorithm.</summary>
+      <returns>An array that contains the key sizes supported by the algorithm.</returns>
     </member>
-    <member name="M:System.Security.Cryptography.CryptographicException.#ctor(System.String)">
-      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException"></see> class with a specified error message.</summary>
-      <param name="message">The error message that explains the reason for the exception.</param>
+    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.LegalKeySizesValue">
+      <summary>Specifies the key sizes, in bits, that are supported by the symmetric algorithm.</summary>
+      <returns></returns>
     </member>
-    <member name="M:System.Security.Cryptography.CryptographicException.#ctor(System.String,System.Exception)">
-      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
-      <param name="message">The error message that explains the reason for the exception.</param>
-      <param name="inner">The exception that is the cause of the current exception. If the inner parameter is not null, the current exception is raised in a catch block that handles the inner exception.</param>
+    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.Mode">
+      <summary>Gets or sets the mode for operation of the symmetric algorithm.</summary>
+      <returns>The mode for operation of the symmetric algorithm. The default is <see cref="F:System.Security.Cryptography.CipherMode.CBC"></see>.</returns>
+      <exception cref="T:System.Security.Cryptography.CryptographicException">The cipher mode is not one of the <see cref="System.Security.Cryptography.CipherMode"></see> values.</exception>
     </member>
-    <member name="M:System.Security.Cryptography.CryptographicException.#ctor(System.String,System.String)">
-      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException"></see> class with a specified error message in the specified format.</summary>
-      <param name="format">The format used to output the error message.</param>
-      <param name="insert">The error message that explains the reason for the exception.</param>
+    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.ModeValue">
+      <summary>Represents the cipher mode used in the symmetric algorithm.</summary>
+      <returns></returns>
     </member>
-    <member name="T:System.Security.Cryptography.CryptographicUnexpectedOperationException">
-      <summary>The exception that is thrown when an unexpected operation occurs during a cryptographic operation.</summary>
+    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.Padding">
+      <summary>Gets or sets the padding mode used in the symmetric algorithm.</summary>
+      <returns>The padding mode used in the symmetric algorithm. The default is <see cref="F:System.Security.Cryptography.PaddingMode.PKCS7"></see>.</returns>
+      <exception cref="T:System.Security.Cryptography.CryptographicException">The padding mode is not one of the <see cref="System.Security.Cryptography.PaddingMode"></see> values.</exception>
     </member>
-    <member name="M:System.Security.Cryptography.CryptographicUnexpectedOperationException.#ctor">
-      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"></see> class with default properties.</summary>
+    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.PaddingValue">
+      <summary>Represents the padding mode used in the symmetric algorithm.</summary>
+      <returns></returns>
     </member>
-    <member name="M:System.Security.Cryptography.CryptographicUnexpectedOperationException.#ctor(System.String)">
-      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"></see> class with a specified error message.</summary>
-      <param name="message">The error message that explains the reason for the exception.</param>
+    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.ValidKeySize(System.Int32)">
+      <summary>Determines whether the specified key size is valid for the current algorithm.</summary>
+      <param name="bitLength">The length, in bits, to check for a valid key size.</param>
+      <returns><see langword="true"></see> if the specified key size is valid for the current algorithm; otherwise, <see langword="false"></see>.</returns>
     </member>
-    <member name="M:System.Security.Cryptography.CryptographicUnexpectedOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
-      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"></see> class with serialized data.</summary>
-      <param name="info">The object that holds the serialized object data.</param>
-      <param name="context">The contextual information about the source or destination.</param>
+    <member name="T:System.Security.Cryptography.CryptoStreamMode">
+      <summary>Specifies the mode of a cryptographic stream.</summary>
     </member>
-    <member name="M:System.Security.Cryptography.CryptographicUnexpectedOperationException.#ctor(System.String,System.Exception)">
-      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
-      <param name="message">The error message that explains the reason for the exception.</param>
-      <param name="inner">The exception that is the cause of the current exception. If the inner parameter is not null, the current exception is raised in a catch block that handles the inner exception.</param>
+    <member name="F:System.Security.Cryptography.CryptoStreamMode.Read">
+      <summary>Read access to a cryptographic stream.</summary>
+      <returns></returns>
     </member>
-    <member name="M:System.Security.Cryptography.CryptographicUnexpectedOperationException.#ctor(System.String,System.String)">
-      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"></see> class with a specified error message in the specified format.</summary>
-      <param name="format">The format used to output the error message.</param>
-      <param name="insert">The error message that explains the reason for the exception.</param>
+    <member name="F:System.Security.Cryptography.CryptoStreamMode.Write">
+      <summary>Write access to a cryptographic stream.</summary>
+      <returns></returns>
     </member>
     <member name="T:System.Security.Cryptography.CryptoStream">
       <summary>Defines a stream that links data streams to cryptographic transformations.</summary>
       <exception cref="T:System.ArgumentException"><paramref name="stream">stream</paramref> is invalid.</exception>
     </member>
     <member name="M:System.Security.Cryptography.CryptoStream.#ctor(System.IO.Stream,System.Security.Cryptography.ICryptoTransform,System.Security.Cryptography.CryptoStreamMode,System.Boolean)">
-      <param name="stream"></param>
-      <param name="transform"></param>
-      <param name="mode"></param>
-      <param name="leaveOpen"></param>
+      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptoStream"></see> class.</summary>
+      <param name="stream">The stream on which to perform the cryptographic transformation.</param>
+      <param name="transform">The cryptographic transformation that is to be performed on the stream.</param>
+      <param name="mode">The mode of the stream.</param>
+      <param name="leaveOpen"><see langword="true"></see> to not close the underlying stream when the <see cref="T:System.Security.Cryptography.CryptoStream"></see> object is disposed; otherwise, <see langword="false"></see>.</param>
+      <exception cref="T:System.ArgumentException"><paramref name="mode">mode</paramref> is invalid.</exception>
+    </member>
+    <member name="M:System.Security.Cryptography.CryptoStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)">
+      <param name="buffer"></param>
+      <param name="offset"></param>
+      <param name="count"></param>
+      <param name="callback"></param>
+      <param name="state"></param>
+      <returns></returns>
+    </member>
+    <member name="M:System.Security.Cryptography.CryptoStream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)">
+      <param name="buffer"></param>
+      <param name="offset"></param>
+      <param name="count"></param>
+      <param name="callback"></param>
+      <param name="state"></param>
+      <returns></returns>
     </member>
     <member name="P:System.Security.Cryptography.CryptoStream.CanRead">
       <summary>Gets a value indicating whether the current <see cref="T:System.Security.Cryptography.CryptoStream"></see> is readable.</summary>
-      <returns>true if the current stream is readable; otherwise, false.</returns>
+      <returns><see langword="true"></see> if the current stream is readable; otherwise, <see langword="false"></see>.</returns>
     </member>
     <member name="P:System.Security.Cryptography.CryptoStream.CanSeek">
       <summary>Gets a value indicating whether you can seek within the current <see cref="T:System.Security.Cryptography.CryptoStream"></see>.</summary>
-      <returns>Always false.</returns>
+      <returns>Always <see langword="false"></see>.</returns>
     </member>
     <member name="P:System.Security.Cryptography.CryptoStream.CanWrite">
       <summary>Gets a value indicating whether the current <see cref="T:System.Security.Cryptography.CryptoStream"></see> is writable.</summary>
-      <returns>true if the current stream is writable; otherwise, false.</returns>
+      <returns><see langword="true"></see> if the current stream is writable; otherwise, <see langword="false"></see>.</returns>
     </member>
     <member name="M:System.Security.Cryptography.CryptoStream.Clear">
       <summary>Releases all resources used by the <see cref="T:System.Security.Cryptography.CryptoStream"></see>.</summary>
     </member>
     <member name="M:System.Security.Cryptography.CryptoStream.Dispose(System.Boolean)">
       <summary>Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.CryptoStream"></see> and optionally releases the managed resources.</summary>
-      <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+      <param name="disposing"><see langword="true"></see> to release both managed and unmanaged resources; <see langword="false"></see> to release only unmanaged resources.</param>
+    </member>
+    <member name="M:System.Security.Cryptography.CryptoStream.EndRead(System.IAsyncResult)">
+      <param name="asyncResult"></param>
+      <returns></returns>
+    </member>
+    <member name="M:System.Security.Cryptography.CryptoStream.EndWrite(System.IAsyncResult)">
+      <param name="asyncResult"></param>
     </member>
     <member name="M:System.Security.Cryptography.CryptoStream.Flush">
       <summary>Clears all buffers for the current stream and causes any buffered data to be written to the underlying device.</summary>
     </member>
     <member name="P:System.Security.Cryptography.CryptoStream.HasFlushedFinalBlock">
       <summary>Gets a value indicating whether the final buffer block has been written to the underlying stream.</summary>
-      <returns>true if the final block has been flushed; otherwise, false.</returns>
+      <returns><see langword="true"></see> if the final block has been flushed; otherwise, <see langword="false"></see>.</returns>
     </member>
     <member name="P:System.Security.Cryptography.CryptoStream.Length">
       <summary>Gets the length in bytes of the stream.</summary>
       <param name="count">The maximum number of bytes to read.</param>
       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"></see>.</param>
       <returns>A task that represents the asynchronous read operation. The value of the task object&amp;#39;s <paramref name="TResult">TResult</paramref> parameter contains the total number of bytes read into the buffer. The result can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the stream has been reached.</returns>
-      <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+      <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is <see langword="null"></see>.</exception>
       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> or <paramref name="count">count</paramref> is negative.</exception>
       <exception cref="T:System.ArgumentException">The sum of <paramref name="offset">offset</paramref> and <paramref name="count">count</paramref> is larger than the buffer length.</exception>
       <exception cref="T:System.NotSupportedException">The stream does not support reading.</exception>
       <param name="count">The maximum number of bytes to write.</param>
       <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"></see>.</param>
       <returns>A task that represents the asynchronous write operation.</returns>
-      <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+      <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is <see langword="null"></see>.</exception>
       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> or <paramref name="count">count</paramref> is negative.</exception>
       <exception cref="T:System.ArgumentException">The sum of <paramref name="offset">offset</paramref> and <paramref name="count">count</paramref> is larger than the buffer length.</exception>
       <exception cref="T:System.NotSupportedException">The stream does not support writing.</exception>
     <member name="M:System.Security.Cryptography.CryptoStream.WriteByte(System.Byte)">
       <param name="value"></param>
     </member>
-    <member name="T:System.Security.Cryptography.CryptoStreamMode">
-      <summary>Specifies the mode of a cryptographic stream.</summary>
+    <member name="T:System.Security.Cryptography.CryptographicUnexpectedOperationException">
+      <summary>The exception that is thrown when an unexpected operation occurs during a cryptographic operation.</summary>
     </member>
-    <member name="F:System.Security.Cryptography.CryptoStreamMode.Read">
-      <summary>Read access to a cryptographic stream.</summary>
+    <member name="M:System.Security.Cryptography.CryptographicUnexpectedOperationException.#ctor">
+      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"></see> class with default properties.</summary>
+    </member>
+    <member name="M:System.Security.Cryptography.CryptographicUnexpectedOperationException.#ctor(System.String)">
+      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"></see> class with a specified error message.</summary>
+      <param name="message">The error message that explains the reason for the exception.</param>
+    </member>
+    <member name="M:System.Security.Cryptography.CryptographicUnexpectedOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"></see> class with serialized data.</summary>
+      <param name="info">The object that holds the serialized object data.</param>
+      <param name="context">The contextual information about the source or destination.</param>
+    </member>
+    <member name="M:System.Security.Cryptography.CryptographicUnexpectedOperationException.#ctor(System.String,System.Exception)">
+      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+      <param name="message">The error message that explains the reason for the exception.</param>
+      <param name="inner">The exception that is the cause of the current exception. If the inner parameter is not <see langword="null"></see>, the current exception is raised in a <see langword="catch"></see> block that handles the inner exception.</param>
+    </member>
+    <member name="M:System.Security.Cryptography.CryptographicUnexpectedOperationException.#ctor(System.String,System.String)">
+      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"></see> class with a specified error message in the specified format.</summary>
+      <param name="format">The format used to output the error message.</param>
+      <param name="insert">The error message that explains the reason for the exception.</param>
+    </member>
+    <member name="T:System.Security.Cryptography.CryptographicOperations">
+      
+    </member>
+    <member name="M:System.Security.Cryptography.CryptographicOperations.FixedTimeEquals(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
+      <param name="left"></param>
+      <param name="right"></param>
       <returns></returns>
     </member>
-    <member name="F:System.Security.Cryptography.CryptoStreamMode.Write">
-      <summary>Write access to a cryptographic stream.</summary>
+    <member name="M:System.Security.Cryptography.CryptographicOperations.ZeroMemory(System.Span{System.Byte})">
+      <param name="buffer"></param>
+    </member>
+    <member name="T:System.Security.Cryptography.CryptographicException">
+      <summary>The exception that is thrown when an error occurs during a cryptographic operation.</summary>
+    </member>
+    <member name="M:System.Security.Cryptography.CryptographicException.#ctor">
+      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException"></see> class with default properties.</summary>
+    </member>
+    <member name="M:System.Security.Cryptography.CryptographicException.#ctor(System.Int32)">
+      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException"></see> class with the specified <see langword="HRESULT"></see> error code.</summary>
+      <param name="hr">The <see langword="HRESULT"></see> error code.</param>
+    </member>
+    <member name="M:System.Security.Cryptography.CryptographicException.#ctor(System.String)">
+      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException"></see> class with a specified error message.</summary>
+      <param name="message">The error message that explains the reason for the exception.</param>
+    </member>
+    <member name="M:System.Security.Cryptography.CryptographicException.#ctor(System.String,System.Exception)">
+      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException"></see> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+      <param name="message">The error message that explains the reason for the exception.</param>
+      <param name="inner">The exception that is the cause of the current exception. If the inner parameter is not <see langword="null"></see>, the current exception is raised in a <see langword="catch"></see> block that handles the inner exception.</param>
+    </member>
+    <member name="M:System.Security.Cryptography.CryptographicException.#ctor(System.String,System.String)">
+      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicException"></see> class with a specified error message in the specified format.</summary>
+      <param name="format">The format used to output the error message.</param>
+      <param name="insert">The error message that explains the reason for the exception.</param>
+    </member>
+    <member name="T:System.Security.Cryptography.CipherMode">
+      <summary>Specifies the block cipher mode to use for encryption.</summary>
+    </member>
+    <member name="F:System.Security.Cryptography.CipherMode.CBC">
+      <summary>The Cipher Block Chaining (<see langword="CBC"></see>) mode introduces feedback. Before each plain text block is encrypted, it is combined with the cipher text of the previous block by a bitwise exclusive OR operation. This ensures that even if the plain text contains many identical blocks, they will each encrypt to a different cipher text block. The initialization vector is combined with the first plain text block by a bitwise exclusive OR operation before the block is encrypted. If a single bit of the cipher text block is mangled, the corresponding plain text block will also be mangled. In addition, a bit in the subsequent block, in the same position as the original mangled bit, will be mangled.</summary>
+      <returns></returns>
+    </member>
+    <member name="F:System.Security.Cryptography.CipherMode.CFB">
+      <summary>The Cipher Feedback (<see langword="CFB"></see>) mode processes small increments of plain text into cipher text, instead of processing an entire block at a time. This mode uses a shift register that is one block in length and is divided into sections. For example, if the block size is 8 bytes, with one byte processed at a time, the shift register is divided into eight sections. If a bit in the cipher text is mangled, one plain text bit is mangled and the shift register is corrupted. This results in the next several plain text increments being mangled until the bad bit is shifted out of the shift register. The default feedback size can vary by algorithm, but is typically either 8 bits or the number of bits of the block size. You can alter the number of feedback bits by using the <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.FeedbackSize"></see> property. Algorithms that support CFB use this property to set the feedback.</summary>
+      <returns></returns>
+    </member>
+    <member name="F:System.Security.Cryptography.CipherMode.CTS">
+      <summary>The Cipher Text Stealing (<see langword="CTS"></see>) mode handles any length of plain text and produces cipher text whose length matches the plain text length. This mode behaves like the <see langword="CBC"></see> mode for all but the last two blocks of the plain text.</summary>
+      <returns></returns>
+    </member>
+    <member name="F:System.Security.Cryptography.CipherMode.ECB">
+      <summary>The Electronic Codebook (<see langword="ECB"></see>) mode encrypts each block individually. Any blocks of plain text that are identical and in the same message, or that are in a different message encrypted with the same key, will be transformed into identical cipher text blocks. Important:  This mode is not recommended because it opens the door for multiple security exploits. If the plain text to be encrypted contains substantial repetition, it is feasible for the cipher text to be broken one block at a time. It is also possible to use block analysis to determine the encryption key. Also, an active adversary can substitute and exchange individual blocks without detection, which allows blocks to be saved and inserted into the stream at other points without detection.</summary>
+      <returns></returns>
+    </member>
+    <member name="F:System.Security.Cryptography.CipherMode.OFB">
+      <summary>The Output Feedback (<see langword="OFB"></see>) mode processes small increments of plain text into cipher text instead of processing an entire block at a time. This mode is similar to <see langword="CFB"></see>; the only difference between the two modes is the way that the shift register is filled. If a bit in the cipher text is mangled, the corresponding bit of plain text will be mangled. However, if there are extra or missing bits from the cipher text, the plain text will be mangled from that point on.</summary>
       <returns></returns>
     </member>
     <member name="T:System.Security.Cryptography.HashAlgorithm">
     </member>
     <member name="P:System.Security.Cryptography.HashAlgorithm.CanReuseTransform">
       <summary>Gets a value indicating whether the current transform can be reused.</summary>
-      <returns>Always true.</returns>
+      <returns>Always <see langword="true"></see>.</returns>
     </member>
     <member name="P:System.Security.Cryptography.HashAlgorithm.CanTransformMultipleBlocks">
       <summary>When overridden in a derived class, gets a value indicating whether multiple blocks can be transformed.</summary>
-      <returns>true if multiple blocks can be transformed; otherwise, false.</returns>
+      <returns><see langword="true"></see> if multiple blocks can be transformed; otherwise, <see langword="false"></see>.</returns>
     </member>
     <member name="M:System.Security.Cryptography.HashAlgorithm.Clear">
       <summary>Releases all resources used by the <see cref="T:System.Security.Cryptography.HashAlgorithm"></see> class.</summary>
       <summary>Computes the hash value for the specified byte array.</summary>
       <param name="buffer">The input to compute the hash code for.</param>
       <returns>The computed hash code.</returns>
-      <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+      <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is <see langword="null"></see>.</exception>
       <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
     </member>
     <member name="M:System.Security.Cryptography.HashAlgorithm.ComputeHash(System.IO.Stream)">
       <exception cref="T:System.ArgumentException"><paramref name="count">count</paramref> is an invalid value.  
  -or-  
  <paramref name="buffer">buffer</paramref> length is invalid.</exception>
-      <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
+      <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is <see langword="null"></see>.</exception>
       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> is out of range. This parameter requires a non-negative number.</exception>
       <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
     </member>
     <member name="M:System.Security.Cryptography.HashAlgorithm.Create">
       <summary>Creates an instance of the default implementation of a hash algorithm.</summary>
-      <returns>A new <see cref="System.Security.Cryptography.SHA1CryptoServiceProvider"></see> instance, unless the default settings have been changed using the .</returns>
+      <returns>A new <see cref="T:System.Security.Cryptography.SHA1CryptoServiceProvider"></see> instance, unless the default settings have been changed using the .</returns>
     </member>
     <member name="M:System.Security.Cryptography.HashAlgorithm.Create(System.String)">
       <summary>Creates an instance of the specified implementation of a hash algorithm.</summary>
  <see cref="T:System.Security.Cryptography.SHA512Managed"></see> System.Security.Cryptography.SHA512  
 
  <see cref="T:System.Security.Cryptography.SHA512Managed"></see></param>
-      <returns>A new instance of the specified hash algorithm, or null if <paramref name="hashName">hashName</paramref> is not a valid hash algorithm.</returns>
+      <returns>A new instance of the specified hash algorithm, or <see langword="null"></see> if <paramref name="hashName">hashName</paramref> is not a valid hash algorithm.</returns>
     </member>
     <member name="M:System.Security.Cryptography.HashAlgorithm.Dispose">
       <summary>Releases all resources used by the current instance of the <see cref="T:System.Security.Cryptography.HashAlgorithm"></see> class.</summary>
     </member>
     <member name="M:System.Security.Cryptography.HashAlgorithm.Dispose(System.Boolean)">
       <summary>Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.HashAlgorithm"></see> and optionally releases the managed resources.</summary>
-      <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+      <param name="disposing"><see langword="true"></see> to release both managed and unmanaged resources; <see langword="false"></see> to release only unmanaged resources.</param>
     </member>
     <member name="P:System.Security.Cryptography.HashAlgorithm.Hash">
       <summary>Gets the value of the computed hash code.</summary>
       <returns>The current value of the computed hash code.</returns>
-      <exception cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"><see cref="System.Security.Cryptography.HashAlgorithm.HashValue"></see> is null.</exception>
+      <exception cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException"><see cref="System.Security.Cryptography.HashAlgorithm.HashValue"></see> is <see langword="null"></see>.</exception>
       <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
     </member>
     <member name="M:System.Security.Cryptography.HashAlgorithm.HashCore(System.Byte[],System.Int32,System.Int32)">
       <param name="ibStart">The offset into the byte array from which to begin using data.</param>
       <param name="cbSize">The number of bytes in the byte array to use as data.</param>
     </member>
+    <member name="M:System.Security.Cryptography.HashAlgorithm.HashCore(System.ReadOnlySpan{System.Byte})">
+      <param name="source"></param>
+    </member>
     <member name="M:System.Security.Cryptography.HashAlgorithm.HashFinal">
       <summary>When overridden in a derived class, finalizes the hash computation after the last data is processed by the cryptographic stream object.</summary>
       <returns>The computed hash code.</returns>
       <exception cref="T:System.ArgumentException"><paramref name="inputCount">inputCount</paramref> uses an invalid value.  
  -or-  
  <paramref name="inputBuffer">inputBuffer</paramref> has an invalid length.</exception>
-      <exception cref="T:System.ArgumentNullException"><paramref name="inputBuffer">inputBuffer</paramref> is null.</exception>
+      <exception cref="T:System.ArgumentNullException"><paramref name="inputBuffer">inputBuffer</paramref> is <see langword="null"></see>.</exception>
       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="inputOffset">inputOffset</paramref> is out of range. This parameter requires a non-negative number.</exception>
       <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
     </member>
       <exception cref="T:System.ArgumentException"><paramref name="inputCount">inputCount</paramref> uses an invalid value.  
  -or-  
  <paramref name="inputBuffer">inputBuffer</paramref> has an invalid offset length.</exception>
-      <exception cref="T:System.ArgumentNullException"><paramref name="inputBuffer">inputBuffer</paramref> is null.</exception>
+      <exception cref="T:System.ArgumentNullException"><paramref name="inputBuffer">inputBuffer</paramref> is <see langword="null"></see>.</exception>
       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="inputOffset">inputOffset</paramref> is out of range. This parameter requires a non-negative number.</exception>
       <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
     </member>
-    <member name="T:System.Security.Cryptography.HashAlgorithmName">
-      <summary>Specifies the name of a cryptographic hash algorithm.</summary>
+    <member name="M:System.Security.Cryptography.HashAlgorithm.TryComputeHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@)">
+      <param name="source"></param>
+      <param name="destination"></param>
+      <param name="bytesWritten"></param>
+      <returns></returns>
     </member>
-    <member name="M:System.Security.Cryptography.HashAlgorithmName.#ctor(System.String)">
-      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.HashAlgorithmName"></see> structure with a custom name.</summary>
-      <param name="name">The custom hash algorithm name.</param>
+    <member name="M:System.Security.Cryptography.HashAlgorithm.TryHashFinal(System.Span{System.Byte},System.Int32@)">
+      <param name="destination"></param>
+      <param name="bytesWritten"></param>
+      <returns></returns>
     </member>
-    <member name="M:System.Security.Cryptography.HashAlgorithmName.Equals(System.Object)">
-      <summary>Returns a value that indicates whether the current instance and a specified object are equal.</summary>
-      <param name="obj">The object to compare with the current instance.</param>
-      <returns>true if <paramref name="obj">obj</paramref> is a <see cref="System.Security.Cryptography.HashAlgorithmName"></see> object and its <see cref="System.Security.Cryptography.HashAlgorithmName.Name"></see> property is equal to that of the current instance. The comparison is ordinal and case-sensitive.</returns>
+    <member name="T:System.Security.Cryptography.PaddingMode">
+      <summary>Specifies the type of padding to apply when the message data block is shorter than the full number of bytes needed for a cryptographic operation.</summary>
     </member>
-    <member name="M:System.Security.Cryptography.HashAlgorithmName.Equals(System.Security.Cryptography.HashAlgorithmName)">
-      <summary>Returns a value that indicates whether two <see cref="T:System.Security.Cryptography.HashAlgorithmName"></see> instances are equal.</summary>
-      <param name="other">The object to compare with the current instance.</param>
-      <returns>true if the <see cref="System.Security.Cryptography.HashAlgorithmName.Name"></see> property of <paramref name="other">other</paramref> is equal to that of the current instance. The comparison is ordinal and case-sensitive.</returns>
+    <member name="F:System.Security.Cryptography.PaddingMode.ANSIX923">
+      <summary>The ANSIX923 padding string consists of a sequence of bytes filled with zeros before the length.</summary>
+      <returns></returns>
     </member>
-    <member name="M:System.Security.Cryptography.HashAlgorithmName.GetHashCode">
-      <summary>Returns the hash code for the current instance.</summary>
-      <returns>The hash code for the current instance, or 0 if no <paramref name="name">name</paramref> value was supplied to the <see cref="System.Security.Cryptography.HashAlgorithmName"></see> constructor.</returns>
-    </member>
-    <member name="P:System.Security.Cryptography.HashAlgorithmName.MD5">
-      <summary>Gets a hash algorithm name that represents &amp;quot;MD5&amp;quot;.</summary>
-      <returns>A hash algorithm name that represents &amp;quot;MD5&amp;quot;.</returns>
-    </member>
-    <member name="P:System.Security.Cryptography.HashAlgorithmName.Name">
-      <summary>Gets the underlying string representation of the algorithm name.</summary>
-      <returns>The string representation of the algorithm name, or null or <see cref="System.String.Empty"></see> if no hash algorithm is available.</returns>
+    <member name="F:System.Security.Cryptography.PaddingMode.ISO10126">
+      <summary>The ISO10126 padding string consists of random data before the length.</summary>
+      <returns></returns>
     </member>
-    <member name="M:System.Security.Cryptography.HashAlgorithmName.op_Equality(System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.HashAlgorithmName)">
-      <summary>Determines whether two specified <see cref="T:System.Security.Cryptography.HashAlgorithmName"></see> objects are equal.</summary>
-      <param name="left">The first object to compare.</param>
-      <param name="right">The second object to compare.</param>
-      <returns>true if both <paramref name="left">left</paramref> and <paramref name="right">right</paramref> have the same <see cref="System.Security.Cryptography.HashAlgorithmName.Name"></see> value; otherwise, false.</returns>
+    <member name="F:System.Security.Cryptography.PaddingMode.None">
+      <summary>No padding is done.</summary>
+      <returns></returns>
     </member>
-    <member name="M:System.Security.Cryptography.HashAlgorithmName.op_Inequality(System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.HashAlgorithmName)">
-      <summary>Determines whether two specified <see cref="T:System.Security.Cryptography.HashAlgorithmName"></see> objects are not equal.</summary>
-      <param name="left">The first object to compare.</param>
-      <param name="right">The second object to compare.</param>
-      <returns>true if both <paramref name="left">left</paramref> and <paramref name="right">right</paramref> do not have the same <see cref="System.Security.Cryptography.HashAlgorithmName.Name"></see> value; otherwise, false.</returns>
+    <member name="F:System.Security.Cryptography.PaddingMode.PKCS7">
+      <summary>The PKCS #7 padding string consists of a sequence of bytes, each of which is equal to the total number of padding bytes added.</summary>
+      <returns></returns>
     </member>
-    <member name="P:System.Security.Cryptography.HashAlgorithmName.SHA1">
-      <summary>Gets a hash algorithm name that represents &amp;quot;SHA1&amp;quot;.</summary>
-      <returns>A hash algorithm name that represents &amp;quot;SHA1&amp;quot;.</returns>
+    <member name="F:System.Security.Cryptography.PaddingMode.Zeros">
+      <summary>The padding string consists of bytes set to zero.</summary>
+      <returns></returns>
     </member>
-    <member name="P:System.Security.Cryptography.HashAlgorithmName.SHA256">
-      <summary>Gets a hash algorithm name that represents &amp;quot;SHA256&amp;quot;.</summary>
-      <returns>A hash algorithm name that represents &amp;quot;SHA256&amp;quot;.</returns>
+    <member name="T:System.Security.Cryptography.KeySizes">
+      <summary>Determines the set of valid key sizes for the symmetric cryptographic algorithms.</summary>
     </member>
-    <member name="P:System.Security.Cryptography.HashAlgorithmName.SHA384">
-      <summary>Gets a hash algorithm name that represents &amp;quot;SHA384&amp;quot;.</summary>
-      <returns>A hash algorithm name that represents &amp;quot;SHA384&amp;quot;.</returns>
+    <member name="M:System.Security.Cryptography.KeySizes.#ctor(System.Int32,System.Int32,System.Int32)">
+      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.KeySizes"></see> class with the specified key values.</summary>
+      <param name="minSize">The minimum valid key size.</param>
+      <param name="maxSize">The maximum valid key size.</param>
+      <param name="skipSize">The interval between valid key sizes.</param>
     </member>
-    <member name="P:System.Security.Cryptography.HashAlgorithmName.SHA512">
-      <summary>Gets a hash algorithm name that represents &amp;quot;SHA512&amp;quot;.</summary>
-      <returns>A hash algorithm name that represents &amp;quot;SHA512&amp;quot;.</returns>
+    <member name="P:System.Security.Cryptography.KeySizes.MaxSize">
+      <summary>Specifies the maximum key size in bits.</summary>
+      <returns>The maximum key size in bits.</returns>
     </member>
-    <member name="M:System.Security.Cryptography.HashAlgorithmName.ToString">
-      <summary>Returns the string representation of the current <see cref="T:System.Security.Cryptography.HashAlgorithmName"></see> instance.</summary>
-      <returns>The string representation of the current <see cref="System.Security.Cryptography.HashAlgorithmName"></see> instance.</returns>
+    <member name="P:System.Security.Cryptography.KeySizes.MinSize">
+      <summary>Specifies the minimum key size in bits.</summary>
+      <returns>The minimum key size in bits.</returns>
     </member>
-    <member name="T:System.Security.Cryptography.HMAC">
-      <summary>Represents the abstract class from which all implementations of Hash-based Message Authentication Code (HMAC) must derive.</summary>
+    <member name="P:System.Security.Cryptography.KeySizes.SkipSize">
+      <summary>Specifies the interval between valid key sizes in bits.</summary>
+      <returns>The interval between valid key sizes in bits.</returns>
     </member>
-    <member name="M:System.Security.Cryptography.HMAC.#ctor">
-      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMAC"></see> class.</summary>
+    <member name="T:System.Security.Cryptography.KeyedHashAlgorithm">
+      <summary>Represents the abstract class from which all implementations of keyed hash algorithms must derive.</summary>
     </member>
-    <member name="P:System.Security.Cryptography.HMAC.BlockSizeValue">
-      <summary>Gets or sets the block size to use in the hash value.</summary>
-      <returns>The block size to use in the hash value.</returns>
+    <member name="M:System.Security.Cryptography.KeyedHashAlgorithm.#ctor">
+      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.KeyedHashAlgorithm"></see> class.</summary>
     </member>
-    <member name="M:System.Security.Cryptography.HMAC.Create">
-      <summary>Creates an instance of the default implementation of a Hash-based Message Authentication Code (HMAC).</summary>
-      <returns>A new SHA-1 instance, unless the default settings have been changed by using the &amp;lt;cryptoClass&amp;gt; element.</returns>
+    <member name="M:System.Security.Cryptography.KeyedHashAlgorithm.Create">
+      <summary>Creates an instance of the default implementation of a keyed hash algorithm.</summary>
+      <returns>A new <see cref="T:System.Security.Cryptography.HMACSHA1"></see> instance, unless the default settings have been changed.</returns>
     </member>
-    <member name="M:System.Security.Cryptography.HMAC.Create(System.String)">
-      <summary>Creates an instance of the specified implementation of a Hash-based Message Authentication Code (HMAC).</summary>
-      <param name="algorithmName">The HMAC implementation to use. The following table shows the valid values for the algorithmName parameter and the algorithms they map to.  
+    <member name="M:System.Security.Cryptography.KeyedHashAlgorithm.Create(System.String)">
+      <summary>Creates an instance of the specified implementation of a keyed hash algorithm.</summary>
+      <param name="algName">The keyed hash algorithm implementation to use. The following table shows the valid values for the algName parameter and the algorithms they map to.  
   Parameter value  
 
   Implements  
  <see cref="T:System.Security.Cryptography.MACTripleDES"></see> System.Security.Cryptography.MACTripleDES  
 
  <see cref="T:System.Security.Cryptography.MACTripleDES"></see></param>
-      <returns>A new instance of the specified HMAC implementation.</returns>
-    </member>
-    <member name="M:System.Security.Cryptography.HMAC.Dispose(System.Boolean)">
-      <summary>Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.HMAC"></see> class when a key change is legitimate and optionally releases the managed resources.</summary>
-      <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
-    </member>
-    <member name="M:System.Security.Cryptography.HMAC.HashCore(System.Byte[],System.Int32,System.Int32)">
-      <summary>When overridden in a derived class, routes data written to the object into the default <see cref="T:System.Security.Cryptography.HMAC"></see> hash algorithm for computing the hash value.</summary>
-      <param name="rgb">The input data.</param>
-      <param name="ib">The offset into the byte array from which to begin using data.</param>
-      <param name="cb">The number of bytes in the array to use as data.</param>
-    </member>
-    <member name="M:System.Security.Cryptography.HMAC.HashFinal">
-      <summary>When overridden in a derived class, finalizes the hash computation after the last data is processed by the cryptographic stream object.</summary>
-      <returns>The computed hash code in a byte array.</returns>
-    </member>
-    <member name="P:System.Security.Cryptography.HMAC.HashName">
-      <summary>Gets or sets the name of the hash algorithm to use for hashing.</summary>
-      <returns>The name of the hash algorithm.</returns>
-      <exception cref="T:System.Security.Cryptography.CryptographicException">The current hash algorithm cannot be changed.</exception>
+      <returns>A new instance of the specified keyed hash algorithm.</returns>
     </member>
-    <member name="M:System.Security.Cryptography.HMAC.Initialize">
-      <summary>Initializes an instance of the default implementation of <see cref="T:System.Security.Cryptography.HMAC"></see>.</summary>
+    <member name="M:System.Security.Cryptography.KeyedHashAlgorithm.Dispose(System.Boolean)">
+      <summary>Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.KeyedHashAlgorithm"></see> and optionally releases the managed resources.</summary>
+      <param name="disposing"><see langword="true"></see> to release both managed and unmanaged resources; <see langword="false"></see> to release only unmanaged resources.</param>
     </member>
-    <member name="P:System.Security.Cryptography.HMAC.Key">
+    <member name="P:System.Security.Cryptography.KeyedHashAlgorithm.Key">
       <summary>Gets or sets the key to use in the hash algorithm.</summary>
       <returns>The key to use in the hash algorithm.</returns>
-      <exception cref="T:System.Security.Cryptography.CryptographicException">An attempt is made to change the <see cref="System.Security.Cryptography.HMAC.Key"></see> property after hashing has begun.</exception>
+      <exception cref="T:System.Security.Cryptography.CryptographicException">An attempt was made to change the <see cref="System.Security.Cryptography.KeyedHashAlgorithm.Key"></see> property after hashing has begun.</exception>
+    </member>
+    <member name="F:System.Security.Cryptography.KeyedHashAlgorithm.KeyValue">
+      <summary>The key to use in the hash algorithm.</summary>
+      <returns></returns>
     </member>
     <member name="T:System.Security.Cryptography.ICryptoTransform">
       <summary>Defines the basic operations of cryptographic transformations.</summary>
     </member>
     <member name="P:System.Security.Cryptography.ICryptoTransform.CanReuseTransform">
       <summary>Gets a value indicating whether the current transform can be reused.</summary>
-      <returns>true if the current transform can be reused; otherwise, false.</returns>
+      <returns><see langword="true"></see> if the current transform can be reused; otherwise, <see langword="false"></see>.</returns>
     </member>
     <member name="P:System.Security.Cryptography.ICryptoTransform.CanTransformMultipleBlocks">
       <summary>Gets a value indicating whether multiple blocks can be transformed.</summary>
-      <returns>true if multiple blocks can be transformed; otherwise, false.</returns>
+      <returns><see langword="true"></see> if multiple blocks can be transformed; otherwise, <see langword="false"></see>.</returns>
     </member>
     <member name="P:System.Security.Cryptography.ICryptoTransform.InputBlockSize">
       <summary>Gets the input block size.</summary>
       <param name="inputCount">The number of bytes in the byte array to use as data.</param>
       <returns>The computed transform.</returns>
     </member>
-    <member name="T:System.Security.Cryptography.KeyedHashAlgorithm">
-      <summary>Represents the abstract class from which all implementations of keyed hash algorithms must derive.</summary>
+    <member name="T:System.Security.Cryptography.HMAC">
+      <summary>Represents the abstract class from which all implementations of Hash-based Message Authentication Code (HMAC) must derive.</summary>
     </member>
-    <member name="M:System.Security.Cryptography.KeyedHashAlgorithm.#ctor">
-      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.KeyedHashAlgorithm"></see> class.</summary>
+    <member name="M:System.Security.Cryptography.HMAC.#ctor">
+      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMAC"></see> class.</summary>
     </member>
-    <member name="M:System.Security.Cryptography.KeyedHashAlgorithm.Create">
-      <summary>Creates an instance of the default implementation of a keyed hash algorithm.</summary>
-      <returns>A new <see cref="System.Security.Cryptography.HMACSHA1"></see> instance, unless the default settings have been changed.</returns>
+    <member name="P:System.Security.Cryptography.HMAC.BlockSizeValue">
+      <summary>Gets or sets the block size to use in the hash value.</summary>
+      <returns>The block size to use in the hash value.</returns>
     </member>
-    <member name="M:System.Security.Cryptography.KeyedHashAlgorithm.Create(System.String)">
-      <summary>Creates an instance of the specified implementation of a keyed hash algorithm.</summary>
-      <param name="algName">The keyed hash algorithm implementation to use. The following table shows the valid values for the algName parameter and the algorithms they map to.  
+    <member name="M:System.Security.Cryptography.HMAC.Create">
+      <summary>Creates an instance of the default implementation of a Hash-based Message Authentication Code (HMAC).</summary>
+      <returns>A new SHA-1 instance, unless the default settings have been changed by using the &amp;lt;cryptoClass&amp;gt; element.</returns>
+    </member>
+    <member name="M:System.Security.Cryptography.HMAC.Create(System.String)">
+      <summary>Creates an instance of the specified implementation of a Hash-based Message Authentication Code (HMAC).</summary>
+      <param name="algorithmName">The HMAC implementation to use. The following table shows the valid values for the algorithmName parameter and the algorithms they map to.  
   Parameter value  
 
   Implements  
  <see cref="T:System.Security.Cryptography.MACTripleDES"></see> System.Security.Cryptography.MACTripleDES  
 
  <see cref="T:System.Security.Cryptography.MACTripleDES"></see></param>
-      <returns>A new instance of the specified keyed hash algorithm.</returns>
-    </member>
-    <member name="M:System.Security.Cryptography.KeyedHashAlgorithm.Dispose(System.Boolean)">
-      <summary>Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.KeyedHashAlgorithm"></see> and optionally releases the managed resources.</summary>
-      <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
-    </member>
-    <member name="P:System.Security.Cryptography.KeyedHashAlgorithm.Key">
-      <summary>Gets or sets the key to use in the hash algorithm.</summary>
-      <returns>The key to use in the hash algorithm.</returns>
-      <exception cref="T:System.Security.Cryptography.CryptographicException">An attempt was made to change the <see cref="System.Security.Cryptography.KeyedHashAlgorithm.Key"></see> property after hashing has begun.</exception>
-    </member>
-    <member name="F:System.Security.Cryptography.KeyedHashAlgorithm.KeyValue">
-      <summary>The key to use in the hash algorithm.</summary>
-      <returns></returns>
-    </member>
-    <member name="T:System.Security.Cryptography.KeySizes">
-      <summary>Determines the set of valid key sizes for the symmetric cryptographic algorithms.</summary>
-    </member>
-    <member name="M:System.Security.Cryptography.KeySizes.#ctor(System.Int32,System.Int32,System.Int32)">
-      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.KeySizes"></see> class with the specified key values.</summary>
-      <param name="minSize">The minimum valid key size.</param>
-      <param name="maxSize">The maximum valid key size.</param>
-      <param name="skipSize">The interval between valid key sizes.</param>
-    </member>
-    <member name="P:System.Security.Cryptography.KeySizes.MaxSize">
-      <summary>Specifies the maximum key size in bits.</summary>
-      <returns>The maximum key size in bits.</returns>
-    </member>
-    <member name="P:System.Security.Cryptography.KeySizes.MinSize">
-      <summary>Specifies the minimum key size in bits.</summary>
-      <returns>The minimum key size in bits.</returns>
-    </member>
-    <member name="P:System.Security.Cryptography.KeySizes.SkipSize">
-      <summary>Specifies the interval between valid key sizes in bits.</summary>
-      <returns>The interval between valid key sizes in bits.</returns>
-    </member>
-    <member name="T:System.Security.Cryptography.PaddingMode">
-      <summary>Specifies the type of padding to apply when the message data block is shorter than the full number of bytes needed for a cryptographic operation.</summary>
-    </member>
-    <member name="F:System.Security.Cryptography.PaddingMode.ANSIX923">
-      <summary>The ANSIX923 padding string consists of a sequence of bytes filled with zeros before the length.</summary>
-      <returns></returns>
-    </member>
-    <member name="F:System.Security.Cryptography.PaddingMode.ISO10126">
-      <summary>The ISO10126 padding string consists of random data before the length.</summary>
-      <returns></returns>
-    </member>
-    <member name="F:System.Security.Cryptography.PaddingMode.None">
-      <summary>No padding is done.</summary>
-      <returns></returns>
-    </member>
-    <member name="F:System.Security.Cryptography.PaddingMode.PKCS7">
-      <summary>The PKCS #7 padding string consists of a sequence of bytes, each of which is equal to the total number of padding bytes added.</summary>
-      <returns></returns>
-    </member>
-    <member name="F:System.Security.Cryptography.PaddingMode.Zeros">
-      <summary>The padding string consists of bytes set to zero.</summary>
-      <returns></returns>
-    </member>
-    <member name="T:System.Security.Cryptography.SymmetricAlgorithm">
-      <summary>Represents the abstract base class from which all implementations of symmetric algorithms must inherit.</summary>
-    </member>
-    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.#ctor">
-      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.SymmetricAlgorithm"></see> class.</summary>
-      <exception cref="T:System.Security.Cryptography.CryptographicException">The implementation of the class derived from the symmetric algorithm is not valid.</exception>
-    </member>
-    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.BlockSize">
-      <summary>Gets or sets the block size, in bits, of the cryptographic operation.</summary>
-      <returns>The block size, in bits.</returns>
-      <exception cref="T:System.Security.Cryptography.CryptographicException">The block size is invalid.</exception>
-    </member>
-    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.BlockSizeValue">
-      <summary>Represents the block size, in bits, of the cryptographic operation.</summary>
-      <returns></returns>
-    </member>
-    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.Clear">
-      <summary>Releases all resources used by the <see cref="T:System.Security.Cryptography.SymmetricAlgorithm"></see> class.</summary>
-    </member>
-    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.Create">
-      <summary>Creates a default cryptographic object used to perform the symmetric algorithm.</summary>
-      <returns>A default cryptographic object used to perform the symmetric algorithm.</returns>
+      <returns>A new instance of the specified HMAC implementation.</returns>
     </member>
-    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.Create(System.String)">
-      <summary>Creates the specified cryptographic object used to perform the symmetric algorithm.</summary>
-      <param name="algName">The name of the specific implementation of the <see cref="T:System.Security.Cryptography.SymmetricAlgorithm"></see> class to use.</param>
-      <returns>A cryptographic object used to perform the symmetric algorithm.</returns>
+    <member name="M:System.Security.Cryptography.HMAC.Dispose(System.Boolean)">
+      <summary>Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.HMAC"></see> class when a key change is legitimate and optionally releases the managed resources.</summary>
+      <param name="disposing"><see langword="true"></see> to release both managed and unmanaged resources; <see langword="false"></see> to release only unmanaged resources.</param>
     </member>
-    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.CreateDecryptor">
-      <summary>Creates a symmetric decryptor object with the current <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key"></see> property and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV"></see>).</summary>
-      <returns>A symmetric decryptor object.</returns>
+    <member name="M:System.Security.Cryptography.HMAC.HashCore(System.ReadOnlySpan{System.Byte})">
+      <param name="source"></param>
     </member>
-    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.CreateDecryptor(System.Byte[],System.Byte[])">
-      <summary>When overridden in a derived class, creates a symmetric decryptor object with the specified <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key"></see> property and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV"></see>).</summary>
-      <param name="rgbKey">The secret key to use for the symmetric algorithm.</param>
-      <param name="rgbIV">The initialization vector to use for the symmetric algorithm.</param>
-      <returns>A symmetric decryptor object.</returns>
-    </member>
-    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.CreateEncryptor">
-      <summary>Creates a symmetric encryptor object with the current <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key"></see> property and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV"></see>).</summary>
-      <returns>A symmetric encryptor object.</returns>
+    <member name="M:System.Security.Cryptography.HMAC.HashCore(System.Byte[],System.Int32,System.Int32)">
+      <summary>When overridden in a derived class, routes data written to the object into the default <see cref="T:System.Security.Cryptography.HMAC"></see> hash algorithm for computing the hash value.</summary>
+      <param name="rgb">The input data.</param>
+      <param name="ib">The offset into the byte array from which to begin using data.</param>
+      <param name="cb">The number of bytes in the array to use as data.</param>
     </member>
-    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.CreateEncryptor(System.Byte[],System.Byte[])">
-      <summary>When overridden in a derived class, creates a symmetric encryptor object with the specified <see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key"></see> property and initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV"></see>).</summary>
-      <param name="rgbKey">The secret key to use for the symmetric algorithm.</param>
-      <param name="rgbIV">The initialization vector to use for the symmetric algorithm.</param>
-      <returns>A symmetric encryptor object.</returns>
+    <member name="M:System.Security.Cryptography.HMAC.HashFinal">
+      <summary>When overridden in a derived class, finalizes the hash computation after the last data is processed by the cryptographic stream object.</summary>
+      <returns>The computed hash code in a byte array.</returns>
     </member>
-    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.Dispose">
-      <summary>Releases all resources used by the current instance of the <see cref="T:System.Security.Cryptography.SymmetricAlgorithm"></see> class.</summary>
+    <member name="P:System.Security.Cryptography.HMAC.HashName">
+      <summary>Gets or sets the name of the hash algorithm to use for hashing.</summary>
+      <returns>The name of the hash algorithm.</returns>
+      <exception cref="T:System.Security.Cryptography.CryptographicException">The current hash algorithm cannot be changed.</exception>
     </member>
-    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.Dispose(System.Boolean)">
-      <summary>Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.SymmetricAlgorithm"></see> and optionally releases the managed resources.</summary>
-      <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
+    <member name="M:System.Security.Cryptography.HMAC.Initialize">
+      <summary>Initializes an instance of the default implementation of <see cref="T:System.Security.Cryptography.HMAC"></see>.</summary>
     </member>
-    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.FeedbackSize">
-      <summary>Gets or sets the feedback size, in bits, of the cryptographic operation.</summary>
-      <returns>The feedback size in bits.</returns>
-      <exception cref="T:System.Security.Cryptography.CryptographicException">The feedback size is larger than the block size.</exception>
+    <member name="P:System.Security.Cryptography.HMAC.Key">
+      <summary>Gets or sets the key to use in the hash algorithm.</summary>
+      <returns>The key to use in the hash algorithm.</returns>
+      <exception cref="T:System.Security.Cryptography.CryptographicException">An attempt is made to change the <see cref="System.Security.Cryptography.HMAC.Key"></see> property after hashing has begun.</exception>
     </member>
-    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.FeedbackSizeValue">
-      <summary>Represents the feedback size, in bits, of the cryptographic operation.</summary>
+    <member name="M:System.Security.Cryptography.HMAC.TryHashFinal(System.Span{System.Byte},System.Int32@)">
+      <param name="destination"></param>
+      <param name="bytesWritten"></param>
       <returns></returns>
     </member>
-    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.GenerateIV">
-      <summary>When overridden in a derived class, generates a random initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV"></see>) to use for the algorithm.</summary>
-    </member>
-    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.GenerateKey">
-      <summary>When overridden in a derived class, generates a random key (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.Key"></see>) to use for the algorithm.</summary>
-    </member>
-    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.IV">
-      <summary>Gets or sets the initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV"></see>) for the symmetric algorithm.</summary>
-      <returns>The initialization vector.</returns>
-      <exception cref="T:System.ArgumentNullException">An attempt was made to set the initialization vector to null.</exception>
-      <exception cref="T:System.Security.Cryptography.CryptographicException">An attempt was made to set the initialization vector to an invalid size.</exception>
-    </member>
-    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.IVValue">
-      <summary>Represents the initialization vector (<see cref="P:System.Security.Cryptography.SymmetricAlgorithm.IV"></see>) for the symmetric algorithm.</summary>
-      <returns></returns>
+    <member name="T:System.Security.Cryptography.HashAlgorithmName">
+      <summary>Specifies the name of a cryptographic hash algorithm.</summary>
     </member>
-    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.Key">
-      <summary>Gets or sets the secret key for the symmetric algorithm.</summary>
-      <returns>The secret key to use for the symmetric algorithm.</returns>
-      <exception cref="T:System.ArgumentNullException">An attempt was made to set the key to null.</exception>
-      <exception cref="T:System.Security.Cryptography.CryptographicException">The key size is invalid.</exception>
+    <member name="M:System.Security.Cryptography.HashAlgorithmName.#ctor(System.String)">
+      <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.HashAlgorithmName"></see> structure with a custom name.</summary>
+      <param name="name">The custom hash algorithm name.</param>
     </member>
-    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.KeySize">
-      <summary>Gets or sets the size, in bits, of the secret key used by the symmetric algorithm.</summary>
-      <returns>The size, in bits, of the secret key used by the symmetric algorithm.</returns>
-      <exception cref="T:System.Security.Cryptography.CryptographicException">The key size is not valid.</exception>
+    <member name="M:System.Security.Cryptography.HashAlgorithmName.Equals(System.Object)">
+      <summary>Returns a value that indicates whether the current instance and a specified object are equal.</summary>
+      <param name="obj">The object to compare with the current instance.</param>
+      <returns><see langword="true"></see> if <paramref name="obj">obj</paramref> is a <see cref="T:System.Security.Cryptography.HashAlgorithmName"></see> object and its <see cref="P:System.Security.Cryptography.HashAlgorithmName.Name"></see> property is equal to that of the current instance. The comparison is ordinal and case-sensitive.</returns>
     </member>
-    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.KeySizeValue">
-      <summary>Represents the size, in bits, of the secret key used by the symmetric algorithm.</summary>
-      <returns></returns>
+    <member name="M:System.Security.Cryptography.HashAlgorithmName.Equals(System.Security.Cryptography.HashAlgorithmName)">
+      <summary>Returns a value that indicates whether two <see cref="T:System.Security.Cryptography.HashAlgorithmName"></see> instances are equal.</summary>
+      <param name="other">The object to compare with the current instance.</param>
+      <returns><see langword="true"></see> if the <see cref="P:System.Security.Cryptography.HashAlgorithmName.Name"></see> property of <paramref name="other">other</paramref> is equal to that of the current instance. The comparison is ordinal and case-sensitive.</returns>
     </member>
-    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.KeyValue">
-      <summary>Represents the secret key for the symmetric algorithm.</summary>
-      <returns></returns>
+    <member name="M:System.Security.Cryptography.HashAlgorithmName.GetHashCode">
+      <summary>Returns the hash code for the current instance.</summary>
+      <returns>The hash code for the current instance, or 0 if no <paramref name="name">name</paramref> value was supplied to the <see cref="T:System.Security.Cryptography.HashAlgorithmName"></see> constructor.</returns>
     </member>
-    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.LegalBlockSizes">
-      <summary>Gets the block sizes, in bits, that are supported by the symmetric algorithm.</summary>
-      <returns>An array that contains the block sizes supported by the algorithm.</returns>
+    <member name="P:System.Security.Cryptography.HashAlgorithmName.MD5">
+      <summary>Gets a hash algorithm name that represents &amp;quot;MD5&amp;quot;.</summary>
+      <returns>A hash algorithm name that represents &amp;quot;MD5&amp;quot;.</returns>
     </member>
-    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.LegalBlockSizesValue">
-      <summary>Specifies the block sizes, in bits, that are supported by the symmetric algorithm.</summary>
-      <returns></returns>
+    <member name="P:System.Security.Cryptography.HashAlgorithmName.Name">
+      <summary>Gets the underlying string representation of the algorithm name.</summary>
+      <returns>The string representation of the algorithm name, or <see langword="null"></see> or <see cref="F:System.String.Empty"></see> if no hash algorithm is available.</returns>
     </member>
-    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.LegalKeySizes">
-      <summary>Gets the key sizes, in bits, that are supported by the symmetric algorithm.</summary>
-      <returns>An array that contains the key sizes supported by the algorithm.</returns>
+    <member name="M:System.Security.Cryptography.HashAlgorithmName.op_Equality(System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.HashAlgorithmName)">
+      <summary>Determines whether two specified <see cref="T:System.Security.Cryptography.HashAlgorithmName"></see> objects are equal.</summary>
+      <param name="left">The first object to compare.</param>
+      <param name="right">The second object to compare.</param>
+      <returns><see langword="true"></see> if both <paramref name="left">left</paramref> and <paramref name="right">right</paramref> have the same <see cref="P:System.Security.Cryptography.HashAlgorithmName.Name"></see> value; otherwise, <see langword="false"></see>.</returns>
     </member>
-    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.LegalKeySizesValue">
-      <summary>Specifies the key sizes, in bits, that are supported by the symmetric algorithm.</summary>
-      <returns></returns>
+    <member name="M:System.Security.Cryptography.HashAlgorithmName.op_Inequality(System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.HashAlgorithmName)">
+      <summary>Determines whether two specified <see cref="T:System.Security.Cryptography.HashAlgorithmName"></see> objects are not equal.</summary>
+      <param name="left">The first object to compare.</param>
+      <param name="right">The second object to compare.</param>
+      <returns><see langword="true"></see> if both <paramref name="left">left</paramref> and <paramref name="right">right</paramref> do not have the same <see cref="P:System.Security.Cryptography.HashAlgorithmName.Name"></see> value; otherwise, <see langword="false"></see>.</returns>
     </member>
-    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.Mode">
-      <summary>Gets or sets the mode for operation of the symmetric algorithm.</summary>
-      <returns>The mode for operation of the symmetric algorithm. The default is <see cref="System.Security.Cryptography.CipherMode.CBC"></see>.</returns>
-      <exception cref="T:System.Security.Cryptography.CryptographicException">The cipher mode is not one of the <see cref="System.Security.Cryptography.CipherMode"></see> values.</exception>
+    <member name="P:System.Security.Cryptography.HashAlgorithmName.SHA1">
+      <summary>Gets a hash algorithm name that represents &amp;quot;SHA1&amp;quot;.</summary>
+      <returns>A hash algorithm name that represents &amp;quot;SHA1&amp;quot;.</returns>
     </member>
-    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.ModeValue">
-      <summary>Represents the cipher mode used in the symmetric algorithm.</summary>
-      <returns></returns>
+    <member name="P:System.Security.Cryptography.HashAlgorithmName.SHA256">
+      <summary>Gets a hash algorithm name that represents &amp;quot;SHA256&amp;quot;.</summary>
+      <returns>A hash algorithm name that represents &amp;quot;SHA256&amp;quot;.</returns>
     </member>
-    <member name="P:System.Security.Cryptography.SymmetricAlgorithm.Padding">
-      <summary>Gets or sets the padding mode used in the symmetric algorithm.</summary>
-      <returns>The padding mode used in the symmetric algorithm. The default is <see cref="System.Security.Cryptography.PaddingMode.PKCS7"></see>.</returns>
-      <exception cref="T:System.Security.Cryptography.CryptographicException">The padding mode is not one of the <see cref="System.Security.Cryptography.PaddingMode"></see> values.</exception>
+    <member name="P:System.Security.Cryptography.HashAlgorithmName.SHA384">
+      <summary>Gets a hash algorithm name that represents &amp;quot;SHA384&amp;quot;.</summary>
+      <returns>A hash algorithm name that represents &amp;quot;SHA384&amp;quot;.</returns>
     </member>
-    <member name="F:System.Security.Cryptography.SymmetricAlgorithm.PaddingValue">
-      <summary>Represents the padding mode used in the symmetric algorithm.</summary>
-      <returns></returns>
+    <member name="P:System.Security.Cryptography.HashAlgorithmName.SHA512">
+      <summary>Gets a hash algorithm name that represents &amp;quot;SHA512&amp;quot;.</summary>
+      <returns>A hash algorithm name that represents &amp;quot;SHA512&amp;quot;.</returns>
     </member>
-    <member name="M:System.Security.Cryptography.SymmetricAlgorithm.ValidKeySize(System.Int32)">
-      <summary>Determines whether the specified key size is valid for the current algorithm.</summary>
-      <param name="bitLength">The length, in bits, to check for a valid key size.</param>
-      <returns>true if the specified key size is valid for the current algorithm; otherwise, false.</returns>
+    <member name="M:System.Security.Cryptography.HashAlgorithmName.ToString">
+      <summary>Returns the string representation of the current <see cref="T:System.Security.Cryptography.HashAlgorithmName"></see> instance.</summary>
+      <returns>The string representation of the current <see cref="T:System.Security.Cryptography.HashAlgorithmName"></see> instance.</returns>
     </member>
   </members>
 </doc>
\ No newline at end of file