protected void VerifyRepeating(string input, int repeatCount, string output) { using (Stream stream = new DataRepeatingStream(input, repeatCount)) { Verify(stream, output); } }
protected void VerifyRepeating(string input, int repeatCount, string output) { using (Stream stream = new DataRepeatingStream(input, repeatCount)) { VerifyComputeHashStream(stream, output); } using (Stream stream = new DataRepeatingStream(input, repeatCount)) { VerifyICryptoTransformStream(stream, output); } }
protected void VerifyRepeating(string input, int repeatCount, string output) { using (Stream stream = new DataRepeatingStream(input, repeatCount)) { VerifyComputeHashStream(stream, output); } #if netstandard17 using (Stream stream = new DataRepeatingStream(input, repeatCount)) { VerifyICryptoTransformStream(stream, output); } #endif }