From 95e2cf5916326c26dd393d6a668e7bbe1f145ac2 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Thu, 2 Apr 2026 20:49:20 -0500 Subject: [PATCH] style: remove unnecessary @ prefix from bytes variable --- .../Cryptography/MachineIdKeyProvider.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/StevanFreeborn.Extensions.Configuration.Secure/Cryptography/MachineIdKeyProvider.cs b/src/StevanFreeborn.Extensions.Configuration.Secure/Cryptography/MachineIdKeyProvider.cs index a42bc19..29b6b87 100644 --- a/src/StevanFreeborn.Extensions.Configuration.Secure/Cryptography/MachineIdKeyProvider.cs +++ b/src/StevanFreeborn.Extensions.Configuration.Secure/Cryptography/MachineIdKeyProvider.cs @@ -10,12 +10,12 @@ internal sealed class MachineIdKeyProvider(IMachineIdKeyGenerator generator) : I public byte[] GetKey() { var machineId = _generator.GetId(); - var @bytes = Encoding.UTF8.GetBytes(machineId); + var bytes = Encoding.UTF8.GetBytes(machineId); #if NET5_0_OR_GREATER - return SHA256.HashData(@bytes); + return SHA256.HashData(bytes); #else using var sha256 = SHA256.Create(); - return sha256.ComputeHash(@bytes); + return sha256.ComputeHash(bytes); #endif } } \ No newline at end of file