Skip to content

Commit 831dd2f

Browse files
authored
Move Hash Algorithm Wrapper to Cryptographic base class
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent f215cc2 commit 831dd2f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

HashifyNet/Core/HashAlgorithmWrapper/HashAlgorithmWrapper_Implementation.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace HashifyNet.Core.HashAlgorithm
3636
{
3737
[HashAlgorithmImplementation(typeof(IHashAlgorithmWrapper), typeof(HashAlgorithmWrapperConfig))]
3838
internal class HashAlgorithmWrapper_Implementation
39-
: HashFunctionBase<IHashAlgorithmWrapperConfig>,
39+
: CryptographicHashFunctionBase<IHashAlgorithmWrapperConfig>,
4040
IHashAlgorithmWrapper
4141
{
4242
public override IHashAlgorithmWrapperConfig Config => _config.Clone();
@@ -84,4 +84,5 @@ protected override IHashValue ComputeHashInternal(ArraySegment<byte> data, Cance
8484
}
8585
}
8686
}
87-
}
87+
88+
}

0 commit comments

Comments
 (0)