This commit is contained in:
Adam D. Ruppe 2021-09-25 07:52:43 -04:00
parent 65e9f3302c
commit 3ca4779971
1 changed files with 3 additions and 1 deletions

View File

@ -4118,7 +4118,9 @@ public {
//assert(!masked, "masking key not properly implemented");
if(masked) {
// FIXME: randomize this
import std.random;
foreach(ref item; maskingKey)
item = uniform(ubyte.min, ubyte.max);
headerScratch[headerScratchPos .. headerScratchPos + 4] = maskingKey[];
headerScratchPos += 4;