mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-19 20:09:03 -07:00
14 lines
333 B
C#
14 lines
333 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace MediaBrowser.Model.Cryptography
|
|
{
|
|
public interface ICryptographyProvider
|
|
{
|
|
Guid GetMD5(string str);
|
|
byte[] GetMD5Bytes(string str);
|
|
byte[] GetSHA1Bytes(byte[] bytes);
|
|
byte[] GetMD5Bytes(Stream str);
|
|
byte[] GetMD5Bytes(byte[] bytes);
|
|
}
|
|
} |