From ad684fb5b61c2f5f154f2c9aec7259f2493799f1 Mon Sep 17 00:00:00 2001 From: Anon Date: Mon, 29 Jan 2024 15:46:42 +0100 Subject: [PATCH] Removed debug log for keys --- MinecraftClient/Protocol/ProfileKey/KeyUtils.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/MinecraftClient/Protocol/ProfileKey/KeyUtils.cs b/MinecraftClient/Protocol/ProfileKey/KeyUtils.cs index a4bc6f2b22..7656c99068 100644 --- a/MinecraftClient/Protocol/ProfileKey/KeyUtils.cs +++ b/MinecraftClient/Protocol/ProfileKey/KeyUtils.cs @@ -39,9 +39,6 @@ static class KeyUtils // POST to "https://api.minecraftservices.com/player/certificates" with authlib-injector will get a dummy response string jsonString = isYggdrasil ? MakeDummyResponse() : response!.Body; Json.JSONData json = Json.ParseJson(jsonString); - Console.WriteLine("Got public key:" + json.Properties["keyPair"].Properties["publicKey"].StringValue); - Console.WriteLine("Got private key:" + json.Properties["keyPair"].Properties["privateKey"].StringValue); - // Error here PublicKey publicKey = new(pemKey: json.Properties["keyPair"].Properties["publicKey"].StringValue, sig: json.Properties["publicKeySignature"].StringValue,