From a4faf1d4cd479d86092da370ad8981befb0944d6 Mon Sep 17 00:00:00 2001 From: jordanwages Date: Sun, 26 Jul 2026 23:06:14 -0500 Subject: [PATCH] Add lazy initialization for shared PBKDF2 algorithm instance --- CapyKit/Password.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CapyKit/Password.cs b/CapyKit/Password.cs index 9e64e35..4127604 100644 --- a/CapyKit/Password.cs +++ b/CapyKit/Password.cs @@ -9,6 +9,9 @@ public class Password { #region Members + /// + /// Lazily initializes the shared preconfigured PBKDF2 algorithm instance. + /// private static readonly Lazy pbkdf2Algorithm = new(() => new Pbkdf2Algorithm()); #endregion