Skip to content

Commit 9aa64a6

Browse files
authored
Use ICryptographicHashFunctionBase instead of direct IDisposable
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent d9e3ac0 commit 9aa64a6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

HashifyNet/Core/ICryptographicHashFunction.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ namespace HashifyNet
3434
/// <summary>
3535
/// Common interface to cryptographic hash functions.
3636
/// </summary>
37-
public interface ICryptographicHashFunction<CName> : IHashFunction<CName>, IDisposable where CName : ICryptographicHashConfig<CName>
37+
public interface ICryptographicHashFunction<CName> : IHashFunction<CName>, ICryptographicHashFunctionBase where CName : ICryptographicHashConfig<CName>
3838
{
3939
}
4040
}
41+

0 commit comments

Comments
 (0)