From 5d63b02e024f78d39a5869ce2283d8d979be9d46 Mon Sep 17 00:00:00 2001 From: "ZGQ Inc." Date: Sun, 27 Jul 2025 13:53:37 +0800 Subject: [PATCH] Print the DecryptionKey to the terminal --- DepotDownloader/Steam3Session.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DepotDownloader/Steam3Session.cs b/DepotDownloader/Steam3Session.cs index 0b9f8555..c97b5684 100644 --- a/DepotDownloader/Steam3Session.cs +++ b/DepotDownloader/Steam3Session.cs @@ -245,6 +245,8 @@ namespace DepotDownloader var depotKey = await steamApps.GetDepotDecryptionKey(depotId, appid); Console.WriteLine("Got depot key for {0} result: {1}", depotKey.DepotID, depotKey.Result); + Console.WriteLine($"Depot ID: {depotKey.DepotID}"); + Console.WriteLine($"DecryptionKey: {BitConverter.ToString(depotKey.DepotKey).Replace("-", "").ToLower()}"); if (depotKey.Result != EResult.OK) { @@ -254,7 +256,6 @@ namespace DepotDownloader DepotKeys[depotKey.DepotID] = depotKey.DepotKey; } - public async Task GetDepotManifestRequestCodeAsync(uint depotId, uint appId, ulong manifestId, string branch) { if (bAborted)