/// <nodoc />
 public DedupNodeOrChunkHashAlgorithm(IChunker chunker)
 {
     if (!ChunkerConfiguration.IsValidChunkSize(chunker.Configuration))
     {
         throw new NotImplementedException($"Unsupported chunk size specified: {chunker.Configuration.AvgChunkSize} in bytes.");
     }
     _chunker = chunker;
     Initialize();
 }