Generates a new <ahref="T_CapyKit_Password.md">Password</a> object using the PBKDF2 algorithm with the provided *password*. This overload of the method generates a random salt value for added security.
<dl><dt><ahref="https://learn.microsoft.com/dotnet/api/system.string"target="_blank"rel="noopener noreferrer">String</a></dt><dd>The clear text password to be hashed.</dd></dl>
This method uses the PBKDF2 (Password-Based Key Derivation Function 2) algorithm to generate a new password hash. The algorithm iteratively applies a pseudorandom function to the password and salt, which increases the security of the resulting hash. In this overload, a random salt value is generated using <ahref="M_CapyKit_Helpers_SecurityHelper_GetRandomBytes.md">GetRandomBytes(Int32)</a> method.