Skip to content

Commit bfaa0f3

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

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

HashifyNet/Core/HashAlgorithmWrapper/IHashAlgorithmWrapperConfig.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ namespace HashifyNet.Core.HashAlgorithm
3535
/// <summary>
3636
/// Defines a configuration for a <see cref="IHashAlgorithmWrapper"/> implementation.
3737
/// </summary>
38-
public interface IHashAlgorithmWrapperConfig : IHashConfig<IHashAlgorithmWrapperConfig>
38+
public interface IHashAlgorithmWrapperConfig : ICryptographicHashConfig<IHashAlgorithmWrapperConfig>
3939
{
4040
/// <summary>
4141
/// Expected size of the hash in bits. If <see cref="InstanceFactory"/> does not return the same hash size as declared here, this will throw a <see cref="InvalidOperationException"/> when creating a new instance."/>
@@ -50,4 +50,5 @@ public interface IHashAlgorithmWrapperConfig : IHashConfig<IHashAlgorithmWrapper
5050
/// </value>
5151
Func<SystemHashAlgorithm> InstanceFactory { get; }
5252
}
53-
}
53+
54+
}

0 commit comments

Comments
 (0)