Files
duplicati/Duplicati/Library/Main/VolumeHashFactory.cs
T

13 lines
231 B
C#
Raw Normal View History

2020-12-28 12:18:58 -08:00
using System.Security.Cryptography;
namespace Duplicati.Library.Main
{
static class VolumeHashFactory
{
public static HashAlgorithm CreateHasher()
{
return SHA256.Create();
}
}
}