Skip to content

Commit 58edb35

Browse files
authored
Derive ICryptographicStreamableHashFunction from ICryptographicHashFunction as well
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent 8914f1f commit 58edb35

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

HashifyNet/Core/ICryptographicStreamableHashFunction.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ namespace HashifyNet
3535
/// Common interface to cryptographic hash functions that can be computed over a stream of data without buffering.
3636
/// </summary>
3737
public interface ICryptographicStreamableHashFunction<CName>
38-
: IStreamableHashFunction<CName>, IDisposable where CName : ICryptographicHashConfig<CName>
38+
: ICryptographicHashFunction<CName>, IStreamableHashFunction<CName>, IDisposable where CName : ICryptographicHashConfig<CName>
3939
{
4040
}
41-
}
41+
42+
}

0 commit comments

Comments
 (0)