Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetCipherIv() [3/3]

static byte[] Internal.Cryptography.Helpers.GetCipherIv ( this CipherMode cipherMode,
byte[] iv )
inlinestatic

Definition at line 14 of file Helpers.cs.

15 {
16 if (cipherMode.UsesIv())
17 {
18 if (iv == null)
19 {
21 }
22 return iv;
23 }
24 return null;
25 }
static string Cryptography_MissingIV
Definition SR.cs:112
Definition SR.cs:7

References System.SR.Cryptography_MissingIV.