jellyfin/MediaBrowser.Model/Cryptography/ICryptographyProvider.cs
2016-10-27 18:54:56 -04:00

12 lines
248 B
C#

using System;
using System.IO;
namespace MediaBrowser.Model.Cryptography
{
public interface ICryptographyProvider
{
Guid GetMD5(string str);
byte[] GetMD5Bytes(string str);
byte[] GetMD5Bytes(Stream str);
}
}