File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
HashifyNet/Algorithms/RapidHash Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -71,11 +71,11 @@ public override IBlockTransformer CreateBlockTransformer()
7171 switch ( _config . Mode )
7272 {
7373 case RapidHashMode . Original :
74- return new BlockTransformer_MOriginal ( _config . Seed ) ;
74+ return new BlockTransformer_MOriginal ( ( ulong ) _config . Seed ) ;
7575 case RapidHashMode . Micro :
76- return new BlockTransformer_MMicro ( _config . Seed ) ;
76+ return new BlockTransformer_MMicro ( ( ulong ) _config . Seed ) ;
7777 case RapidHashMode . Nano :
78- return new BlockTransformer_MNano ( _config . Seed ) ;
78+ return new BlockTransformer_MNano ( ( ulong ) _config . Seed ) ;
7979 default :
8080 throw new NotImplementedException ( ) ;
8181 }
@@ -671,4 +671,5 @@ protected override IHashValue FinalizeHashValueInternal(CancellationToken cancel
671671 }
672672 }
673673 }
674- }
674+
675+ }
You can’t perform that action at this time.
0 commit comments