We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc2ab74 commit 3a8e325Copy full SHA for 3a8e325
DMFDSteamSaveTool/DMFDSteamSaveTool/Form1.cs
@@ -190,8 +190,8 @@ private void encrypt_button_Click(object sender, EventArgs e)
190
if (steamID64_dec.Text.Length > 0)
191
{
192
ulong steamID = ulong.Parse(steamID64_dec.Text) & 0xFFFFFFFF;
193
- dmfd.Encrypt(halfPassword1 + steamID.ToString("x" + 8), ref saveData);
194
- dmfd.Encrypt(halfPassword0 + steamID.ToString("x" + 8), ref saveData);
+ dmfd.Encrypt(halfPassword1 + steamID.ToString("x"), ref saveData);
+ dmfd.Encrypt(halfPassword0 + steamID.ToString("x"), ref saveData);
195
}
196
// encrypt for NS (PS4 too?)
197
else
0 commit comments