Skip to content

Commit 6fbf13a

Browse files
committed
:fix: make setup parameter optional in constructor (consistency)
1 parent 324e8da commit 6fbf13a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Cuemon.Security.Cryptography/SecureHashAlgorithm512.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ public sealed class SecureHashAlgorithm512 : UnkeyedCryptoHash<SHA512>
2020
/// Initializes a new instance of the <see cref="SecureHashAlgorithm512"/> class.
2121
/// </summary>
2222
/// <param name="setup">The <see cref="ConvertibleOptions" /> which may be configured.</param>
23-
public SecureHashAlgorithm512(Action<ConvertibleOptions> setup) : base(SHA512.Create, setup)
23+
public SecureHashAlgorithm512(Action<ConvertibleOptions> setup = null) : base(SHA512.Create, setup)
2424
{
2525
}
2626
}
27-
}
27+
}

0 commit comments

Comments
 (0)