mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 22:13:06 +03:00
13 lines
291 B
C#
13 lines
291 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);
|
|
}
|
|
} |