jellyfin/MediaBrowser.Model/Cryptography/ICryptographyProvider.cs

12 lines
248 B
C#
Raw Normal View History

using System;
2016-10-27 15:54:56 -07:00
using System.IO;
namespace MediaBrowser.Model.Cryptography
{
public interface ICryptographyProvider
{
Guid GetMD5(string str);
2016-10-27 15:54:56 -07:00
byte[] GetMD5Bytes(string str);
byte[] GetMD5Bytes(Stream str);
}
2016-10-27 15:54:56 -07:00
}