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