mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
switch to using
This commit is contained in:
parent
3dced368c2
commit
b5b3d8a30c
@ -7,6 +7,8 @@ namespace OpenSubtitlesHandler
|
||||
public class MovieHasher
|
||||
{
|
||||
public static byte[] ComputeMovieHash(Stream input)
|
||||
{
|
||||
using (input)
|
||||
{
|
||||
long lhash, streamsize;
|
||||
streamsize = input.Length;
|
||||
@ -27,11 +29,11 @@ namespace OpenSubtitlesHandler
|
||||
i++;
|
||||
lhash += BitConverter.ToInt64(buffer, 0);
|
||||
}
|
||||
input.Close();
|
||||
byte[] result = BitConverter.GetBytes(lhash);
|
||||
Array.Reverse(result);
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
public static string ToHexadecimal(byte[] bytes)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user