Skip to content

Commit d0b39f8

Browse files
authored
Move Hash Algorithm Wrapper to Cryptographic Interface
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent bfaa0f3 commit d0b39f8

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

HashifyNet/Core/HashAlgorithmWrapper/IHashAlgorithmWrapper.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace HashifyNet.Core.HashAlgorithm
3636
/// Implementation of <see cref="IHashFunction{FName}" /> that wraps cryptographic hash functions known as <see cref="System.Security.Cryptography.HashAlgorithm" />.
3737
/// </summary>
3838
public interface IHashAlgorithmWrapper
39-
: IHashFunction<IHashAlgorithmWrapperConfig>
39+
: ICryptographicHashFunction<IHashAlgorithmWrapperConfig>
4040
{
4141
/// <summary>
4242
/// Computes hash value for the given stream.
@@ -50,4 +50,5 @@ public interface IHashAlgorithmWrapper
5050
/// <exception cref="ArgumentException">Stream must be seekable for this type of hash function.;<paramref name="data"/></exception>
5151
IHashValue ComputeHash(Stream data);
5252
}
53-
}
53+
54+
}

0 commit comments

Comments
 (0)