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

◆ BitSizeToByteSize()

static int Internal.Cryptography.Helpers.BitSizeToByteSize ( this int bits)
inlinestatic

Definition at line 134 of file Helpers.cs.

135 {
136 return (bits + 7) / 8;
137 }