We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 324e8da commit 6fbf13aCopy full SHA for 6fbf13a
src/Cuemon.Security.Cryptography/SecureHashAlgorithm512.cs
@@ -20,8 +20,8 @@ public sealed class SecureHashAlgorithm512 : UnkeyedCryptoHash<SHA512>
20
/// Initializes a new instance of the <see cref="SecureHashAlgorithm512"/> class.
21
/// </summary>
22
/// <param name="setup">The <see cref="ConvertibleOptions" /> which may be configured.</param>
23
- public SecureHashAlgorithm512(Action<ConvertibleOptions> setup) : base(SHA512.Create, setup)
+ public SecureHashAlgorithm512(Action<ConvertibleOptions> setup = null) : base(SHA512.Create, setup)
24
{
25
}
26
27
-}
+}
0 commit comments