Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
BlockSize
override int System.Security.Cryptography.RijndaelManaged.BlockSize
get
set
Definition at line
13
of file
RijndaelManaged.cs
.
14
{
15
get
16
{
17
return
_impl
.
BlockSize
;
18
}
19
set
20
{
21
switch
(
value
)
22
{
23
case
192:
24
case
256:
25
throw
new
PlatformNotSupportedException(
System
.
SR
.
Cryptography_Rijndael_BlockSize
);
26
default
:
27
throw
new
CryptographicException(
System
.
SR
.
Cryptography_Rijndael_BlockSize
);
28
case
128:
29
break
;
30
}
31
}
32
}
System.SR.Cryptography_Rijndael_BlockSize
static string Cryptography_Rijndael_BlockSize
Definition
SR.cs:136
System.SR
Definition
SR.cs:7
System.Security.Cryptography.RijndaelManaged._impl
readonly Aes _impl
Definition
RijndaelManaged.cs:11
System.Security.Cryptography.SymmetricAlgorithm.BlockSize
virtual int BlockSize
Definition
SymmetricAlgorithm.cs:46
System.ExceptionArgument.value
@ value
System
Definition
BlockingCollection.cs:8
System
Security
Cryptography
RijndaelManaged
Generated by
1.10.0