diff --git a/http2.d b/http2.d index 7817cd5..fb76ee2 100644 --- a/http2.d +++ b/http2.d @@ -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;