jellyfin/MediaBrowser.Model/Cryptography/ICryptoProvider.cs

22 lines
482 B
C#
Raw Normal View History

2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
2019-03-05 02:58:25 -05:00
using System.Collections.Generic;
namespace MediaBrowser.Model.Cryptography
{
public interface ICryptoProvider
{
2019-05-21 13:28:34 -04:00
string DefaultHashMethod { get; }
2019-03-05 02:58:25 -05:00
IEnumerable<string> GetSupportedHashMethods();
byte[] ComputeHash(string hashMethod, byte[] bytes, byte[] salt);
2019-03-05 02:58:25 -05:00
byte[] ComputeHashWithDefaultMethod(byte[] bytes, byte[] salt);
byte[] GenerateSalt();
byte[] GenerateSalt(int length);
2019-03-05 02:58:25 -05:00
}
}