mirror of
https://github.com/duplicati/duplicati.git
synced 2026-05-07 15:49:35 -04:00
13 lines
231 B
C#
13 lines
231 B
C#
using System.Security.Cryptography;
|
|
|
|
namespace Duplicati.Library.Main
|
|
{
|
|
static class VolumeHashFactory
|
|
{
|
|
public static HashAlgorithm CreateHasher()
|
|
{
|
|
return SHA256.Create();
|
|
}
|
|
}
|
|
}
|