You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: xml/System.Security.Cryptography/PbeEncryptionAlgorithm.xml
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@
16
16
<BaseTypeName>System.Enum</BaseTypeName>
17
17
</Base>
18
18
<Docs>
19
-
<summary>To be added.</summary>
19
+
<summary>Specifies encryption algorithms to be used with Password-Based Encryption (PBE).</summary>
20
20
<remarks>To be added.</remarks>
21
21
</Docs>
22
22
<Members>
@@ -40,7 +40,7 @@
40
40
</ReturnValue>
41
41
<MemberValue>1</MemberValue>
42
42
<Docs>
43
-
<summary>To be added.</summary>
43
+
<summary>Indicates the encryption should be performed with the AES-128 algorithm in CBC mode with PKCS#7 padding.</summary>
44
44
</Docs>
45
45
</Member>
46
46
<MemberMemberName="Aes192Cbc">
@@ -63,7 +63,7 @@
63
63
</ReturnValue>
64
64
<MemberValue>2</MemberValue>
65
65
<Docs>
66
-
<summary>To be added.</summary>
66
+
<summary>Indicates the encryption should be performed with the AES-192 algorithm in CBC mode with PKCS#7 padding.</summary>
67
67
</Docs>
68
68
</Member>
69
69
<MemberMemberName="Aes256Cbc">
@@ -86,7 +86,7 @@
86
86
</ReturnValue>
87
87
<MemberValue>3</MemberValue>
88
88
<Docs>
89
-
<summary>To be added.</summary>
89
+
<summary>Indicates that encryption be performed with the AES-256 algorithm in CBC mode with PKCS#7 padding.</summary>
90
90
</Docs>
91
91
</Member>
92
92
<MemberMemberName="TripleDes3KeyPkcs12">
@@ -109,7 +109,7 @@
109
109
</ReturnValue>
110
110
<MemberValue>4</MemberValue>
111
111
<Docs>
112
-
<summary>To be added.</summary>
112
+
<summary>Indicates the encryption should be performed with the TripleDES algorithm in CBC mode with a 192-bit key derived using the Key Derivation Function (KDF) from PKCS#12.</summary>
113
113
</Docs>
114
114
</Member>
115
115
<MemberMemberName="Unknown">
@@ -132,8 +132,8 @@
132
132
</ReturnValue>
133
133
<MemberValue>0</MemberValue>
134
134
<Docs>
135
-
<summary>To be added.</summary>
135
+
<summary>Indicates that no encryption algorithm has been selected.</summary>
Copy file name to clipboardExpand all lines: xml/System.Security.Cryptography/PbeParameters.xml
+14-12Lines changed: 14 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,9 @@
17
17
</Base>
18
18
<Interfaces />
19
19
<Docs>
20
-
<summary>To be added.</summary>
20
+
<summary>Represents parameters to be used for Password-Based Encryption (PBE).</summary>
21
21
<remarks>To be added.</remarks>
22
+
<threadsafe>All public and protected members of <seecref="T:System.Security.Cryptography.PbeParameters" /> are thread-safe and may be used concurrently from multiple threads.</threadsafe>
<paramname="encryptionAlgorithm">To be added.</param>
46
-
<paramname="hashAlgorithm">To be added.</param>
47
-
<paramname="iterationCount">To be added.</param>
48
-
<summary>To be added.</summary>
46
+
<paramname="encryptionAlgorithm">The algorithm to use when encrypting data.</param>
47
+
<paramname="hashAlgorithm">The name of a hash algorithm to use with the Key Derivation Function (KDF) to turn a password into an encryption key.</param>
48
+
<paramname="iterationCount">The iteration count to provide to the Key Derivation Function (KDF) to turn a password into an encryption key.</param>
49
+
<summary>Initializes a new instance of the <seecref="T:System.Security.Cryptography.PbeParameters"/> class.</summary>
49
50
<remarks>To be added.</remarks>
51
+
<exceptioncref="T:System.ArgumentOutOfRangeException"><paramrefname="iterationCount"/> is less than 1.</exception>
0 commit comments