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
This algorithm supports key lengths of 128, 192, or 256 bits; defaulting to 256 bits. This algorithm supports block sizes of 128, 192, or 256 bits; defaulting to 128 bits (<xref:System.Security.Cryptography.Aes>-compatible).
42
+
## Remarks
43
+
This algorithm supports key lengths of 128, 192, or 256 bits; defaulting to 256 bits. In .NET Framework, this algorithm supports block sizes of 128, 192, or 256 bits; defaulting to 128 bits (<xref:System.Security.Cryptography.Aes>-compatible). In .NET Core, it is the same as AES and supports only a 128-bit block size.
44
44
45
45
The <xref:System.Security.Cryptography.Rijndael> algorithm is the predecessor of <xref:System.Security.Cryptography.Aes>. You should use the <xref:System.Security.Cryptography.Aes> class instead of <xref:System.Security.Cryptography.RijndaelManaged>. For more information, see the entry [The Differences Between Rijndael and AES](https://go.microsoft.com/fwlink/?LinkId=200932) in the .NET Security blog.
46
46
@@ -125,9 +125,13 @@
125
125
<ReturnType>System.Int32</ReturnType>
126
126
</ReturnValue>
127
127
<Docs>
128
-
<summary>To be added.</summary>
129
-
<value>To be added.</value>
130
-
<remarks>To be added.</remarks>
128
+
<summary>Gets or sets the block size, in bits, of the cryptographic operation.</summary>
129
+
<value>The block size, in bits, of the cryptographic operation. The default is 128 bits.</value>
130
+
<remarks><formattype="text/markdown"><![CDATA[
131
+
132
+
## Remarks
133
+
In .NET Framework, the valid block size values for Rijndael are 128, 192 and 256 bits. In .NET Core, the block size for Rijndael can only be 128 bits. See the <xref:System.Security.Cryptography.SymmetricAlgorithm.BlockSize?displayProperty=nameWithType> for more information about block size.
134
+
]]></format></remarks>
131
135
</Docs>
132
136
</Member>
133
137
<MemberGroupMemberName="CreateDecryptor">
@@ -483,9 +487,13 @@
483
487
<ReturnType>System.Byte[]</ReturnType>
484
488
</ReturnValue>
485
489
<Docs>
486
-
<summary>To be added.</summary>
487
-
<value>To be added.</value>
488
-
<remarks>To be added.</remarks>
490
+
<summary>Gets or sets the initialization vector (IV) to use for the symmetric algorithm.</summary>
491
+
<value>The initialization vector (IV) to use for the symmetric algorithm. </value>
492
+
<remarks><formattype="text/markdown"><![CDATA[
493
+
494
+
## Remarks
495
+
See the <xref:System.Security.Cryptography.SymmetricAlgorithm.IV?displayProperty=nameWithType> for more information about initialization vectors.
496
+
]]></format></remarks>
489
497
</Docs>
490
498
</Member>
491
499
<MemberMemberName="Key">
@@ -512,9 +520,13 @@
512
520
<ReturnType>System.Byte[]</ReturnType>
513
521
</ReturnValue>
514
522
<Docs>
515
-
<summary>To be added.</summary>
516
-
<value>To be added.</value>
517
-
<remarks>To be added.</remarks>
523
+
<summary>Gets or sets the secret key used for the symmetric algorithm.</summary>
524
+
<value>The secret key used for the symmetric algorithm.</value>
525
+
<remarks><formattype="text/markdown"><![CDATA[
526
+
527
+
## Remarks
528
+
See the <xref:System.Security.Cryptography.SymmetricAlgorithm.Key?displayProperty=nameWithType> for more information about the secret key.
529
+
]]></format></remarks>
518
530
</Docs>
519
531
</Member>
520
532
<MemberMemberName="KeySize">
@@ -541,9 +553,13 @@
541
553
<ReturnType>System.Int32</ReturnType>
542
554
</ReturnValue>
543
555
<Docs>
544
-
<summary>To be added.</summary>
545
-
<value>To be added.</value>
546
-
<remarks>To be added.</remarks>
556
+
<summary>Gets or sets the size, in bits, of the secret key used for the symmetric algorithm.</summary>
557
+
<value>The size, in bits, of the secret key used for the symmetric algorithm. The default is 256 bits.</value>
558
+
<remarks><formattype="text/markdown"><![CDATA[
559
+
560
+
## Remarks
561
+
The valid key sizes for Rijndael are 128, 192 and 256 bits.
0 commit comments