From 58a13d8babb608658e3bd007fafe908f2d7bd615 Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Thu, 19 Aug 2021 14:29:59 -0400 Subject: [PATCH] update comment --- src/accountmanager.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/accountmanager.rs b/src/accountmanager.rs index c5669f5..9312206 100644 --- a/src/accountmanager.rs +++ b/src/accountmanager.rs @@ -241,7 +241,7 @@ impl Manifest { } } -const PBKDF2_ITERATIONS: u32 = 50000; // This is excessive. Is this needed to remain compatible with SDA? +const PBKDF2_ITERATIONS: u32 = 50000; // This is excessive, but necessary to maintain compatibility with SteamDesktopAuthenticator. const SALT_LENGTH: usize = 8; const KEY_SIZE_BYTES: usize = 32; const IV_LENGTH: usize = 16;