From 3ca4779971b3c2b6d220d79f15a6eb8a9844f23a Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 25 Sep 2021 07:52:43 -0400 Subject: [PATCH] fixes --- http2.d | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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;