Skip to content

Commit 7529dda

Browse files
committed
respond to feedback
1 parent 55762c0 commit 7529dda

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

xml/System.Security.Cryptography/Rfc2898DeriveBytes.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@ For more information about PBKDF2, see [RFC 2898](https://www.rfc-editor.org/inf
10391039
<param name="salt">The key salt used to derive the key.</param>
10401040
<param name="iterations">The number of iterations for the operation.</param>
10411041
<param name="hashAlgorithm">The hash algorithm to use to derive the key.</param>
1042-
<param name="outputLength">The size of key to derive (that is, the number of elements in the byte array).</param>
1042+
<param name="outputLength">The size of the key to derive, in bytes.</param>
10431043
<summary>Creates a PBKDF2 derived key from password bytes.</summary>
10441044
<returns>A byte array containing the created PBKDF2 derived key.</returns>
10451045
<remarks>To be added.</remarks>
@@ -1100,7 +1100,7 @@ For more information about PBKDF2, see [RFC 2898](https://www.rfc-editor.org/inf
11001100
<param name="salt">The key salt used to derive the key.</param>
11011101
<param name="iterations">The number of iterations for the operation.</param>
11021102
<param name="hashAlgorithm">The hash algorithm to use to derive the key.</param>
1103-
<param name="outputLength">The size of key to derive (that is, the number of elements in the byte array).</param>
1103+
<param name="outputLength">The size of the key to derive, in bytes.</param>
11041104
<summary>Creates a PBKDF2 derived key from password bytes.</summary>
11051105
<returns>A byte array containing the created PBKDF2 derived key.</returns>
11061106
<remarks>To be added.</remarks>
@@ -1207,9 +1207,9 @@ For more information about PBKDF2, see [RFC 2898](https://www.rfc-editor.org/inf
12071207
<param name="salt">The key salt used to derive the key.</param>
12081208
<param name="iterations">The number of iterations for the operation.</param>
12091209
<param name="hashAlgorithm">The hash algorithm to use to derive the key.</param>
1210-
<param name="outputLength">The size of key to derive (that is, the number of elements in the byte array).</param>
1210+
<param name="outputLength">The size of the key to derive, in bytes.</param>
12111211
<summary>Creates a PBKDF2 derived key from a password.</summary>
1212-
<returns>A byte array of length <paramref name="outputLength" /> that's filled with pseudo-random key bytes.</returns>
1212+
<returns>A byte array of length <paramref name="outputLength" /> that is filled with pseudo-random key bytes.</returns>
12131213
<remarks>
12141214
<format type="text/markdown"><![CDATA[
12151215
@@ -1330,9 +1330,9 @@ The `password` will be converted to bytes using the UTF8 encoding. For
13301330
<param name="salt">The key salt used to derive the key.</param>
13311331
<param name="iterations">The number of iterations for the operation.</param>
13321332
<param name="hashAlgorithm">The hash algorithm to use to derive the key.</param>
1333-
<param name="outputLength">The size of key to derive (that is, the number of elements in the byte array).</param>
1333+
<param name="outputLength">The size of the key to derive, in bytes.</param>
13341334
<summary>Creates a PBKDF2 derived key from a password.</summary>
1335-
<returns>A byte array of length <paramref name="outputLength" /> that's filled with pseudo-random key bytes.</returns>
1335+
<returns>A byte array of length <paramref name="outputLength" /> that is filled with pseudo-random key bytes.</returns>
13361336
<remarks>
13371337
<format type="text/markdown"><![CDATA[
13381338

0 commit comments

Comments
 (0)