mirror of
https://github.com/wismna/ModernKeePassLib.git
synced 2025-10-03 23:50:20 -04:00
Migrated project type from PCL to full netstandard 1.2
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices.WindowsRuntime;
|
||||
using Windows.Security.Cryptography.Core;
|
||||
using Validation;
|
||||
|
||||
namespace ModernKeePassLib.Cryptography.Hash
|
||||
{
|
||||
@@ -18,7 +17,7 @@ namespace ModernKeePassLib.Cryptography.Hash
|
||||
/// <param name="hash">The platform hash.</param>
|
||||
internal HashAlgorithm(CryptographicHash hash)
|
||||
{
|
||||
Requires.NotNull(hash, "Hash");
|
||||
if (hash == null) throw new ArgumentNullException(nameof(hash));
|
||||
_hash = hash;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user