Skip to content

Commit 6ae313d

Browse files
committed
system.security.cryptography
1 parent 89ab8ac commit 6ae313d

36 files changed

+234
-234
lines changed

xml/System.Security.Cryptography/CryptographicOperations.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,7 @@ Fixed-time behavior is guaranteed in all other cases, including when `left` and
10731073
<param name="hashAlgorithm">The algorithm used to compute the hash.</param>
10741074
<param name="source">The data to hash.</param>
10751075
<param name="destination">The buffer to receive the hash value.</param>
1076-
<param name="bytesWritten">When this method returns, the total number of bytes written into <paramref name="destination" />.</param>
1076+
<param name="bytesWritten">When this method returns, contains the total number of bytes written into <paramref name="destination" />.</param>
10771077
<summary>Attempts to compute the hash of data.</summary>
10781078
<returns>
10791079
<see langword="false" /> if <paramref name="destination" /> is too small to hold the calculated hash, <see langword="true" /> otherwise.</returns>
@@ -1123,7 +1123,7 @@ Fixed-time behavior is guaranteed in all other cases, including when `left` and
11231123
<param name="key">The secret key. The key can be any length.</param>
11241124
<param name="source">The data to compute the HMAC over.</param>
11251125
<param name="destination">The buffer to receive the HMAC value.</param>
1126-
<param name="bytesWritten">When this method returns, the total number of bytes written into <paramref name="destination" />.</param>
1126+
<param name="bytesWritten">When this method returns, contains the total number of bytes written into <paramref name="destination" />.</param>
11271127
<summary>Attempts to compute the HMAC of data.</summary>
11281128
<returns>
11291129
<see langword="false" /> if <paramref name="destination" /> is too small to hold the calculated HMAC, <see langword="true" /> otherwise.</returns>

xml/System.Security.Cryptography/ECDsa.xml

Lines changed: 111 additions & 111 deletions
Large diffs are not rendered by default.

xml/System.Security.Cryptography/ECDsaCng.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1710,7 +1710,7 @@ but that is not reflected in this property.
17101710
<Docs>
17111711
<param name="source">To be added.</param>
17121712
<param name="destination">The buffer to receive the signature.</param>
1713-
<param name="bytesWritten">When this method returns, the total number of bytes written into <paramref name="destination" />. This parameter is treated as uninitialized.</param>
1713+
<param name="bytesWritten">When this method returns, contains the total number of bytes written into <paramref name="destination" />. This parameter is treated as uninitialized.</param>
17141714
<summary>Attempts to compute the ECDSA digital signature for the specified read-only span of bytes representing a data hash into the provided destination by using the current key.</summary>
17151715
<returns>
17161716
<see langword="false" /> if <paramref name="destination" /> is not long enough to receive the signature.</returns>

xml/System.Security.Cryptography/HMAC.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ Derived types must override this method.
792792
</Parameters>
793793
<Docs>
794794
<param name="destination">The buffer to receive the HMAC value.</param>
795-
<param name="bytesWritten">When this method returns, the total number of bytes written into <paramref name="destination" />. This parameter is treated as uninitialized.</param>
795+
<param name="bytesWritten">When this method returns, contains the total number of bytes written into <paramref name="destination" />. This parameter is treated as uninitialized.</param>
796796
<summary>Attempts to finalize the HMAC computation after the last data is processed by the HMAC algorithm.</summary>
797797
<returns>
798798
<see langword="true" /> if <paramref name="destination" /> is long enough to receive the HMAC value; otherwise, <see langword="false" />.</returns>

xml/System.Security.Cryptography/HMACMD5.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@
11281128
</Parameters>
11291129
<Docs>
11301130
<param name="destination">The buffer to receive the HMAC value.</param>
1131-
<param name="bytesWritten">When this method returns, the total number of bytes written into <paramref name="destination" />. This parameter is treated as uninitialized.</param>
1131+
<param name="bytesWritten">When this method returns, contains the total number of bytes written into <paramref name="destination" />. This parameter is treated as uninitialized.</param>
11321132
<summary>Attempts to finalize the HMAC computation after the last data is processed by the HMAC algorithm.</summary>
11331133
<returns>
11341134
<see langword="true" /> if <paramref name="destination" /> is long enough to receive the HMAC value; otherwise, <see langword="false" />.</returns>

xml/System.Security.Cryptography/HMACSHA1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1215,7 +1215,7 @@ Releases the unmanaged resources used by the <see cref="T:System.Security.Crypto
12151215
</Parameters>
12161216
<Docs>
12171217
<param name="destination">The buffer to receive the HMAC value.</param>
1218-
<param name="bytesWritten">When this method returns, the total number of bytes written into <paramref name="destination" />. This parameter is treated as uninitialized.</param>
1218+
<param name="bytesWritten">When this method returns, contains the total number of bytes written into <paramref name="destination" />. This parameter is treated as uninitialized.</param>
12191219
<summary>Attempts to finalize the HMAC computation after the last data is processed by the HMAC algorithm.</summary>
12201220
<returns>
12211221
<see langword="true" /> if <paramref name="destination" /> is long enough to receive the HMAC value; otherwise, <see langword="false" />.</returns>

xml/System.Security.Cryptography/HMACSHA256.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@
10181018
<param name="key">The HMAC key.</param>
10191019
<param name="source">The data to HMAC.</param>
10201020
<param name="destination">The buffer to receive the HMAC value.</param>
1021-
<param name="bytesWritten">When this method returns, the total number of bytes written into <paramref name="destination" />.</param>
1021+
<param name="bytesWritten">When this method returns, contains the total number of bytes written into <paramref name="destination" />.</param>
10221022
<summary>Attempts to compute the HMAC of data using the SHA-256 algorithm.</summary>
10231023
<returns>
10241024
<see langword="false" /> if <paramref name="destination" /> is too small to hold the calculated hash, <see langword="true" /> otherwise.</returns>
@@ -1060,7 +1060,7 @@
10601060
</Parameters>
10611061
<Docs>
10621062
<param name="destination">The buffer to receive the HMAC value.</param>
1063-
<param name="bytesWritten">When this method returns, the total number of bytes written into <paramref name="destination" />. This parameter is treated as uninitialized.</param>
1063+
<param name="bytesWritten">When this method returns, contains the total number of bytes written into <paramref name="destination" />. This parameter is treated as uninitialized.</param>
10641064
<summary>Attempts to finalize the HMAC computation after the last data is processed by the HMAC algorithm.</summary>
10651065
<returns>
10661066
<see langword="true" /> if <paramref name="destination" /> is long enough to receive the HMAC value; otherwise, <see langword="false" />.</returns>

xml/System.Security.Cryptography/HMACSHA384.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1087,7 +1087,7 @@ public static void Test()
10871087
<param name="key">The HMAC key.</param>
10881088
<param name="source">The data to HMAC.</param>
10891089
<param name="destination">The buffer to receive the HMAC value.</param>
1090-
<param name="bytesWritten">When this method returns, the total number of bytes written into <paramref name="destination" />.</param>
1090+
<param name="bytesWritten">When this method returns, contains the total number of bytes written into <paramref name="destination" />.</param>
10911091
<summary>Attempts to compute the HMAC of data using the SHA-384 algorithm.</summary>
10921092
<returns>
10931093
<see langword="false" /> if <paramref name="destination" /> is too small to hold the calculated hash, <see langword="true" /> otherwise.</returns>
@@ -1129,7 +1129,7 @@ public static void Test()
11291129
</Parameters>
11301130
<Docs>
11311131
<param name="destination">The buffer to receive the HMAC value.</param>
1132-
<param name="bytesWritten">When this method returns, the total number of bytes written into <paramref name="destination" />. This parameter is treated as uninitialized.</param>
1132+
<param name="bytesWritten">When this method returns, contains the total number of bytes written into <paramref name="destination" />. This parameter is treated as uninitialized.</param>
11331133
<summary>Attempts to finalize the HMAC computation after the last data is processed by the HMAC algorithm.</summary>
11341134
<returns>
11351135
<see langword="true" /> if <paramref name="destination" /> is long enough to receive the HMAC value; otherwise, <see langword="false" />.</returns>

xml/System.Security.Cryptography/HMACSHA3_256.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@
694694
<param name="key">The HMAC key.</param>
695695
<param name="source">The data to HMAC.</param>
696696
<param name="destination">The buffer to receive the HMAC value.</param>
697-
<param name="bytesWritten">When this method returns, the total number of bytes written into <paramref name="destination" />.</param>
697+
<param name="bytesWritten">When this method returns, contains the total number of bytes written into <paramref name="destination" />.</param>
698698
<summary>Attempts to compute the HMAC of data using the SHA-3-256 algorithm.</summary>
699699
<returns>
700700
<see langword="false" /> if <paramref name="destination" /> is too small to hold the calculated hash, <see langword="true" /> otherwise.</returns>

xml/System.Security.Cryptography/HMACSHA3_384.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@
694694
<param name="key">The HMAC key.</param>
695695
<param name="source">The data to HMAC.</param>
696696
<param name="destination">The buffer to receive the HMAC value.</param>
697-
<param name="bytesWritten">When this method returns, the total number of bytes written into <paramref name="destination" />.</param>
697+
<param name="bytesWritten">When this method returns, contains the total number of bytes written into <paramref name="destination" />.</param>
698698
<summary>Attempts to compute the HMAC of data using the SHA-3-384 algorithm.</summary>
699699
<returns>
700700
<see langword="false" /> if <paramref name="destination" /> is too small to hold the calculated hash, <see langword="true" /> otherwise.</returns>

0 commit comments

Comments
 (0)