Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
Helpers.cs
Go to the documentation of this file.
1
using
System.Diagnostics.CodeAnalysis
;
2
3
namespace
Internal.Cryptography
;
4
5
internal
static
class
Helpers
6
{
7
[
return
: NotNullIfNotNull(
"src"
)]
8
public
static
byte
[]
CloneByteArray
(
this
byte
[]
src
)
9
{
10
if
(
src
==
null
)
11
{
12
return
null
;
13
}
14
return
(
byte
[])
src
.Clone();
15
}
16
}
Internal.Cryptography.Helpers.CloneByteArray
static byte[] CloneByteArray(this byte[] src)
Definition
Helpers.cs:8
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
Internal.Cryptography
Definition
AesBCryptModes.cs:5
System.Diagnostics.CodeAnalysis
Definition
AllowNullAttribute.cs:1
source
System.Security.Cryptography.Primitives
Internal.Cryptography
Helpers.cs
Generated by
1.10.0