From bbfe0e40c573ac9df99f815a00fe0050ec39434d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Domeradzki?= Date: Mon, 24 Nov 2025 12:03:28 +0100 Subject: [PATCH] Misc --- ArchiSteamFarm/Steam/Security/MobileAuthenticator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Steam/Security/MobileAuthenticator.cs b/ArchiSteamFarm/Steam/Security/MobileAuthenticator.cs index 20d70abb9..ddeb66fc9 100644 --- a/ArchiSteamFarm/Steam/Security/MobileAuthenticator.cs +++ b/ArchiSteamFarm/Steam/Security/MobileAuthenticator.cs @@ -118,7 +118,7 @@ public sealed class MobileAuthenticator : IDisposable { Span hash = stackalloc byte[HMACSHA1.HashSizeInBytes]; #pragma warning disable CA5350 // This is actually a fair warning, but there is nothing we can do about Steam using weak cryptographic algorithms - _ = HMACSHA1.HashData(sharedSecret, timeArray, hash); + HMACSHA1.HashData(sharedSecret, timeArray, hash); #pragma warning restore CA5350 // This is actually a fair warning, but there is nothing we can do about Steam using weak cryptographic algorithms // The last 4 bits of the mac say where the code starts