mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-04-04 04:18:22 +00:00
18 lines
282 B
C#
18 lines
282 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Esiur.Security.Integrity
|
|
{
|
|
public enum HashFunctionType
|
|
{
|
|
MD5 = 0,
|
|
SHA1,
|
|
SHA256,
|
|
SHA384,
|
|
SHA512
|
|
}
|
|
}
|